body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(to right, #212121, #12001e);
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: linear-gradient(to right, #4c474e, #2e1741);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
}

h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 600;
}

input {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #b45fff;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d662ff;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #b45fff;
    text-decoration: none;
    font-weight: 300;
}

.forgot-password a:hover {
    text-decoration: underline;
}
