* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4338ca, #6b21a8);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    color: white;
    margin-bottom: 20px;
}

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

label {
    color: white;
    text-align: left;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"] {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.options label {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.options a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

button {
    background-color: #1e1e2f;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

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

p {
    color: red;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input[type="password"],
.password-container input[type="text"] {
    height: 45px;
    padding: 12px 40px 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: normal;
}

.password-container i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-90%);
    cursor: pointer;
    color: rgba(198, 196, 196, 0.7);
    font-size: 16px;
    transition: color 0.3s ease;
}

.password-container i:hover {
    color: #ffffff;
}

