﻿body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffff;
}

.login-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    background-color: #ffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5%);
}

.login-image {
    background-color: #5b9f86;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

    .login-image img.logo {
        position: absolute;
        top: 10px;
        width: 60%;
        height: auto;
    }

    .login-image img.illustration {
        margin-top: 150px;
        width: 80%;
        height: auto;
    }

.login-form {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
    .login-form form{
        min-width:300px;  
    }

    .login-form h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
    }

    .login-form label {
        display: block;
        font-size: 14px;
        color: #333;
        margin-bottom: 5px;
        text-align: left;
        width: 100%;
    }

    .login-form input[type="text"],
    .login-form input[type="password"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
        font-size: 14px;
    }

        .login-form input[type="text"]:focus,
        .login-form input[type="password"]:focus {
            border-color: #5b9f86;
        }

    .login-form .password-container {
        position: relative;
        width: 100%;
    }

        .login-form .password-container input[type="password"] {
            width: 100%;
        }

        .login-form .password-container .show-password {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 14px;
        }

    .login-form .login-button {
        background-color: #5b9f86;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        width: 100%;
        margin-top: 10px;
    }

        .login-form .login-button:hover {
            background-color: #498b6c;
        }

    .login-form .forgot-password {
        font-size: 12px;
        color: #333;
        text-decoration: none;
        margin-top: 10px;
    }

        .login-form .forgot-password:hover {
            text-decoration: underline;
        }

    .login-form .signup-link {
        font-size: 12px;
        color: #333;
        margin-top: 20px;
    }

        .login-form .signup-link a {
            color: #5b9f86;
            text-decoration: none;
        }

            .login-form .signup-link a:hover {
                text-decoration: underline;
            }

.text-left h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.form-outline {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#btnForgotPassword {
    text-align: right;
    margin-top: 10px;
}

    #btnForgotPassword a {
        color: #333;
        font-size: 0.9em;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #51A68D;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .login-btn:hover {
        background-color: #3e856e;
    }

.register-link {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
}

    .register-link span {
        color: #333;
    }

    .register-link a {
        color: #51A68D;
        text-decoration: none;
        font-weight: bold;
    }

        .register-link a:hover {
            text-decoration: underline;
        }
