﻿*{
    box-sizing: border-box;
}


body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: linear-gradient( 135deg, #eef7f6 0%, #f7fafb 50%, #e8f3f2 100% );
    color: #374151;
}


/* =====================================================
           Main Container
           ===================================================== */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}


/* =====================================================
           Login Box
           ===================================================== */

.login-box {
    width: 100%;
    max-width: 950px;
    min-height: 560px;
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 98, 95, 0.15);
}


/* =====================================================
           Right Brand Section
           ===================================================== */

.brand-section {
    width: 45%;
    background: linear-gradient( 145deg, #287c78, #1f625f );
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    position: relative;
}


    /* Decorative Circle */

    .brand-section::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.12);
        top: -100px;
        right: -100px;
    }


    .brand-section::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.10);
        bottom: -80px;
        left: -80px;
    }


/* =====================================================
           Logo
           ===================================================== */

.brand-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}


/* =====================================================
           Brand Title
           ===================================================== */

.brand-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}


.brand-subtitle {
    font-size: 16px;
    line-height: 2;
    opacity: 0.9;
    max-width: 330px;
}


/* =====================================================
           Login Section
           ===================================================== */

.login-section {
    width: 55%;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =====================================================
           Login Header
           ===================================================== */

.login-title {
    font-size: 27px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}


.login-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 35px;
}


/* =====================================================
           Form
           ===================================================== */

.form-group {
    margin-bottom: 22px;
}


.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}


/* =====================================================
           Input
           ===================================================== */

.input-group-custom {
    position: relative;
}


.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #287c78;
    z-index: 5;
}


.form-control-custom {
    width: 100%;
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 45px 10px 15px;
    font-size: 14px;
    direction: rtl;
    text-align: right;
    background-color: #f9fafb;
    transition: all 0.2s ease;
}


    .form-control-custom:focus {
        outline: none;
        background-color: #ffffff;
        border-color: #287c78;
        box-shadow: 0 0 0 4px rgba(40,124,120,0.12);
    }


/* =====================================================
           Login Button
           ===================================================== */

.login-button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: linear-gradient( 135deg, #287c78, #1f625f );
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(40,124,120,0.25);
}


    .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(40,124,120,0.35);
    }


    .login-button:active {
        transform: translateY(0);
    }


/* =====================================================
           Validation
           ===================================================== */

.text-danger {
    display: block;
    font-size: 12px;
    margin-top: 6px;
}


/* =====================================================
           Footer
           ===================================================== */

.login-footer {
    margin-top: 30px;
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
}


/* =====================================================
           Responsive
           ===================================================== */

@@media (max-width: 768px) {

    .login-wrapper {
        padding: 15px;
    }


    .login-box {
        flex-direction: column;
        max-width: 500px;
    }


    .brand-section {
        width: 100%;
        min-height: 230px;
        padding: 30px;
    }


    .brand-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 15px;
        border-radius: 18px;
    }


    .brand-title {
        font-size: 27px;
    }


    .brand-subtitle {
        display: none;
    }


    .login-section {
        width: 100%;
        padding: 40px 30px;
    }
}

