body {
     background-image: url("../images/capri14.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /*min-height: 100vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*padding: 20px;*/
}
 .login-header img{
     height: 90px;
 }
.linkhome{
    display: block;
    text-align: center;
    margin: 19px 0 0 0;
    color: #06066e !important;
    font-weight: 600;
    font-size: 15px;
}
::-webkit-input-placeholder {
    color: #fff;
    font-size: 14px;
}

/* Firefox */
::-moz-placeholder {
    color: #fff;
    font-size: 14px;
    opacity: 1;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
    color: #fff;
    font-size: 14px;
}

/* Edge قدیمی */
::-ms-input-placeholder {
    color: #fff;
    font-size: 14px;
}
.login-wrapper {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 20px;
}

.login-card {
    /*background: rgba(255, 255, 255, 0.98);*/
    /*border-radius: 25px;*/
    /*box-shadow: 0 15px 30px rgba(6, 6, 110, 0.2);*/
    /*overflow: hidden;*/
    /*backdrop-filter: blur(15px);*/
}

.left-section {
    background: linear-gradient(135deg, #06066e 0%, #00dca7 100%);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.left-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float-circle 6s ease-in-out infinite;
}

.left-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float-circle 8s ease-in-out infinite reverse;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.left-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.login-icon-wrapper {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

.login-icon-wrapper i {
    font-size: 60px;
    color: white;
}

.left-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.left-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

.right-section {
    padding: 30px 30px;
    background: #beead1;
    border-radius: 50px;
}

.login-header {
    text-align: center;
    margin-bottom: 15px;
}

.login-header h1 {
    color: #06066e;
    font-size: 40px;
    font-weight: 700;
     background: linear-gradient(135deg, #06066e 0%, #00dca7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: #666;
    font-size: 16px;
}

.form-group-custom {
    margin-bottom: 28px;
}

.form-label-custom {
    color: #06066e;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
}

.input-wrapper {
    position: relative;
}

.input-icon-custom {
    display: none;
}

.form-control-custom {
    width: 100%;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #58cc8b;
}

.form-control-custom:focus {
    border-color: #00dca7;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 220, 167, 0.15);
    outline: none;
}

.btn-login-custom {
    background: linear-gradient(135deg, #06066e 0%, #00dca7 100%);
    border: none;
    border-radius: 12px !important;
    padding: 11px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 6, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-login-custom:hover::before {
    left: 100%;
}

.btn-login-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 6, 110, 0.4);
    color: white;
}

.btn-login-custom:active {
    transform: translateY(-1px);
}

.remember-forgot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me-custom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me-custom input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00dca7;
    cursor: pointer;
}

.remember-me-custom label {
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.forgot-link {
    color: #06066e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #00dca7;
}

.divider-custom {
    text-align: center;
    margin: 35px 0;
    position: relative;
}

.divider-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

.divider-custom span {
    background: white;
    padding: 0 20px;
    color: #999;
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.social-buttons-row {
    display: flex;
    gap: 15px;
}

.social-btn-custom {
    flex: 1;
    padding: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: white;
    color: #06066e;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.social-btn-custom:hover {
    border-color: #00dca7;
    color: #00dca7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 220, 167, 0.2);
}

.social-btn-custom i {
    font-size: 18px;
}

@media (max-width: 992px) {
    .left-section {
        min-height: 400px;
        padding: 50px 40px;
    }

    .right-section {
        padding: 50px 40px;
    }

    .left-content h2 {
        font-size: 28px;
    }

    .login-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .left-section {
        min-height: 300px;
        padding: 40px 30px;
    }

    .right-section {
        padding: 40px 30px;
    }

    .login-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .login-icon-wrapper i {
        font-size: 45px;
    }

    .left-content h2 {
        font-size: 24px;
    }

    .login-header h1 {
        font-size: 28px;
    }

    .social-buttons-row {
        flex-direction: column;
    }
}