body {
    font-family:'Courier New', Courier, monospace;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.login-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
form {
    font-family: 'Courier New', Courier, monospace;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.input-group i {
    color: #007BFF;
    margin-right: 10px;
}

.input-group input {
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
}

.input-group input:focus {
    outline: none;
    border-color: #007BFF;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor:grab;
    transition: background-color 0.7s;
}

.btn:hover {
    background-color: #4e00b3;
}

p {
    text-align: center;
    margin-top: 20px;
}

a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

.error {
    color: red;
    text-align: center;
    margin-top: 10px;
}