body form {
    line-height: 1.6;
    color: #333;
    background: transparent;
    min-height: 100vh;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* touch-action: manipulation; */
}
/*    cSS Page Login*/
.auth-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
    margin: 20px auto;
}

.auth-left {
    background: linear-gradient(135deg,#005365 0%,#1e3a8a 100%);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

    .auth-left::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
        animation: float 20s infinite linear
    }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0)
    }

    100% {
        transform: translateY(-100px) rotate(360deg)
    }
}

.logo-section {
    position: relative;
    z-index: 2;
    margin-bottom: 0
}

.ship-icon {
    font-size: 60px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.2);
    padding: 20px;
    border-radius: 50%;
    display: inline-block
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px
}

.logo-subtitle {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 30px
}

.features-list {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 2
}

    .features-list li {
        margin: 15px 0;
        display: flex;
        align-items: center;
        gap: 15px
    }

    .features-list i {
        font-size: 20px;
        background: rgba(255,255,255,.2);
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center
    }

.auth-right {
    padding: 33px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
    color: #666;
    outline: none;
}

    .tab-btn.active {
        background: #005365;
        color: #fff;
        box-shadow: 0 2px 10px rgba(44,90,160,.3)
    }

.auth-form {
    display: none
}

    .auth-form.active {
        display: block
    }

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #005365;
    margin-bottom: 20px;
    text-align: center
}

.form-group {
    margin-bottom: 5px;
    position: relative
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: black
}

.form-input {
    width: 100%;
    padding: 0px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: .3s;
    background: #f8f9fa
}

    .form-input:focus {
        outline: none;
        border-color: #005365;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(44,90,160,.1)
    }

    .form-input.error {
        border-color: #f44336;
        background: #fff5f5
    }

.error-message {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    display: none
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 0;
    transform: translateY(0%);
    margin: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 18px
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px
}

    .remember-me input {
        width: 18px;
        height: 18px
    }

.forgot-password {
    color: #005365;
    text-decoration: none;
    font-weight: 500;
    text-align: right;
}

    .forgot-password:hover {
        text-decoration: underline
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg,#005365,#1e3a8a);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
    margin-bottom: 20px
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(44,90,160,.3)
    }

    .submit-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none
    }

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #666
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e1e5e9
    }

    .divider span {
        background: #fff;
        padding: 0 15px
    }

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #e1e5e9;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500
}

    .social-btn:hover {
        border-color: #005365;
        background: #f8f9fa
    }

    .social-btn.google {
        color: #db4437
    }

    .social-btn.facebook {
        color: #4267B2
    }

.back-home {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,.2);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px
}

    .back-home:hover {
        background: rgba(255,255,255,.3);
        color: #fff
    }

.form-group .form-label {
    flex-direction: row;
    display: flex;
}

    .form-group .form-label .foreign-lang {
        margin-left: 5px;
        margin-top: 2px;
    }

table td, table th {
    vertical-align: middle !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform .3s
}

    .notification.success {
        background: #4CAF50
    }

    .notification.error {
        background: #f44336
    }

    .notification.warning {
        background: #FF9800
    }

    .notification.info {
        background: #2196F3
    }

.u-chitiet .foreign-lang {
    display: inline-block
}

.u-chitiet .info-grid, .info-block {
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

    .info-grid strong, .info-block strong {
        display: block;
        color: #21418f;
    }

.page-title1 {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.back-home {
    position: absolute;
    top: 20px;
    z-index: 9999;
    left: 20px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}



/*    cSS Page Login*/
