/* Custom Auth Styles - Exodera */

/* Form Styling */
.tp-login-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 160px auto;
    transition: all 0.3s ease;
    max-width: 550px;
}

.tp-login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.tp-login-top p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.tp-login-top p a {
    color: #3377ff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.tp-login-top p a:hover {
    border-bottom: 1px solid #3377ff;
}

/* Input Styling */
.tp-login-input-box {
    margin-bottom: 30px;
}

.tp-login-input-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.tp-login-input input {
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 15px;
    color: #222;
    transition: all 0.3s ease;
}

.tp-login-input input:focus {
    border-color: #3377ff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(51, 119, 255, 0.1);
    outline: none;
}

.tp-login-input input::placeholder {
    color: #999;
}

/* Password Field Styling */
.password-input-group {
    position: relative;
}

.tp-login-input-eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #666;
}

.tp-login-input-eye:hover {
    color: #3377ff;
}

/* Button Styling */
.login-btn {
    height: 55px;
    background-color: #3377ff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #2266ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(51, 119, 255, 0.2);
}

/* Forgot Password link */
.tp-login-forgot a {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tp-login-forgot a:hover {
    color: #3377ff;
    text-decoration: underline;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.form-check-input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/* Error Styling */
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Helper Text */
.form-text {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

/* Terms and Policy link */
.text-primary {
    color: #3377ff !important;
}

/* Login Suggestions */
.tp-login-suggestions {
    margin-bottom: 25px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tp-login-wrapper {
        padding: 30px 20px;
        margin: 20px 15px;
    }
    
    .tp-login-title {
        font-size: 24px;
    }
    
    .tp-login-suggestions {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .tp-login-forgot {
        margin-top: 10px;
    }
}

/* RTL Support */
[dir="rtl"] .tp-login-input-eye {
    right: auto;
    left: 15px;
}

[dir="rtl"] .form-check-input {
    margin-right: 0;
    margin-left: 8px;
}

/* Dark Mode Support (if needed) */
.dark-mode .tp-login-wrapper {
    background-color: #222;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.dark-mode .tp-login-title {
    color: #fff;
}

.dark-mode .tp-login-top p {
    color: #ccc;
}

.dark-mode .tp-login-input-title {
    color: #fff;
}

.dark-mode .tp-login-input input {
    background: #333;
    border-color: #444;
    color: #fff;
}

.dark-mode .tp-login-input input::placeholder {
    color: #777;
}

.dark-mode .form-check-label,
.dark-mode .form-text,
.dark-mode .tp-login-forgot a {
    color: #ccc;
}

.dark-mode .tp-login-input input:focus {
    background: #3a3a3a;
} 