body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1c1c1e;
}

.container {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.container h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.container label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
    color: #555;
}

.container input:focus {
    border-color: #007BFF;
    outline: none;
}

.container input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.container button {
    width: 100%;
    padding: 12px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.container button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.container .error {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 15px;
}
.container .success {
    color: #2ecc71;
    font-size: 14px;
    margin-bottom: 15px;
}
.container a {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}
.container a:hover {
    color: #0056b3;
}

.extra-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.header {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
}

.container {
    margin-top: 80px;
}
