* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
.login-container {
    background-color: rgba(255, 255, 255, 0.285);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}
.login-container h2 {
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}
.subtitle {
    color: white;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
}
.input-group {
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.input-group input:focus {
    border-color: #007bff;
    outline: none;
}
.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.login-btn:hover {
    background-color: #0056b3;
}
.extra-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}
.extra-links a {
    color: white;
    text-decoration: none;
}
.extra-links a:hover {
    text-decoration: underline;
}
@media (max-width: 750px) {
    .head1{
    height: 100vh;
    background-size: 100% 100%;
    }
}