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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/image 3.png') no-repeat center center/cover;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.left-side, .right-side {
    flex: 1;
    height: 100vh;
}

.left-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-side img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    background: rgba(0, 0, 0, 0.55);
    padding: 40px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    text-align: center;
}

.login-form h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
}

.input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1e40af);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}

.login-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
}

.forgot-password {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s;
            display: block;
            margin: 5px;
            margin-bottom: 10px;
        }

        .forgot-password:hover {
            color: #a0aec0;
            transform: scale(1.05);
            text-decoration: none;
        }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .left-side img {
        max-width: 65%;
    }

    .login-form {
        max-width: 80%;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .left-side img {
        max-width: 60%;
    }

    .login-form {
        max-width: 90%;
        padding: 20px 16px;
    }
}