﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



    body::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(12,18,52,.85), rgba(34,40,90,.75) );
    }

.login-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.logo-circle {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

.login-title {
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-subtitle {
    text-align: center;
    color: rgba(255,255,255,.85);
    margin-bottom: 35px;
    font-size: 14px;
}

.form-label {
    color: white;
    font-weight: 500;
}

.form-control {
    height: 52px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,.15);
    color: white;
}

    .form-control:focus {
        background: rgba(255,255,255,.2);
        color: white;
        box-shadow: 0 0 0 3px rgba(255,255,255,.15);
    }

    .form-control::placeholder {
        color: rgba(255,255,255,.6);
    }

.form-check-label {
    color: white;
}

.btn-login {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#4f46e5,#6366f1);
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: .3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(79,70,229,.4);
    }

.footer-links {
    text-align: center;
    margin-top: 25px;
}

    .footer-links a {
        color: white;
        text-decoration: none;
        margin: 0 10px;
        opacity: .85;
    }

        .footer-links a:hover {
            opacity: 1;
        }

.text-danger {
    color: #ffb4b4 !important;
}

@@media (max-width:768px) {
    .login-card {
        padding: 25px;
    }

    .login-title {
        font-size: 22px;
    }
}


.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,.8);
        z-index: 10;
    }

    .input-icon input {
        padding-right: 50px;
    }


.main-title {
    font-family: 'Yekan Bakh';
}

.sub-title {
    font-family: 'Yekan Bakh';
}

.custom-icon {
    background: rgba(255,255,255,.12);
    border: none;
    color: white;
    width: 55px;
    justify-content: center;
}

.custom-input {
    border: none;
    background: rgba(255,255,255,.15);
    color: white;
}

    .custom-input:focus {
        background: rgba(255,255,255,.20);
        color: white;
        box-shadow: none;
    }

.input-group {
    overflow: hidden;
    border-radius: 12px;
}

.designer-box {
    margin-top: 25px;
    text-align: center;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 15px;
}

    .designer-box strong {
        display: block;
        margin-top: 4px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

.login-title-wrapper {
    text-align: center;
    margin-bottom: 35px;
}

.main-title {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0,0,0,.35);
}

.sub-title {
    margin-top: 8px;
    color: rgba(255,255,255,.92);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.4;
}


.main-title::after {
    content: '';
    display: block;
    width: 220px;
    height: 2px;
    margin: 12px auto 0;
    background: rgba(255,255,255,.35);
}
