/* Login Custom Styles - Extracted from login.html */

.login-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.login-form-header {
    margin-bottom: 40px;
}

.login-form-header h3 {
    color: #333;
    font-weight: 700;
    font-size: 28px;
}

.login-form-header p {
    font-size: 14px;
}

.form-section {
    background: #fffbf0;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #f4a800;
}

.form-section h6 {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section h6 i {
    color: #f4a800;
    margin-right: 8px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: #f4a800;
    border-color: #f4a800;
}

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

.input-feedback {
    display: none;
    font-size: 12px;
    margin-top: 4px;
}

.input-feedback.error {
    color: #e74c3c;
    display: block;
}

.input-feedback.success {
    color: #27ae60;
    display: block;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control, select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus, select:focus {
    border-color: #f4a800;
    box-shadow: 0 0 0 3px rgba(244, 168, 0, 0.1);
}

.input-group-text {
    background: #f9f9f9;
    border: 1px solid #ddd;
    color: #f4a800;
}

.input-group-text i {
    font-size: 14px;
}

.toggle-password-btn {
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #f4a800;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.toggle-password-btn:hover {
    background: #f4a800;
    color: white;
    border-color: #f4a800;
}

.password-input-group {
    position: relative;
}

.text-danger {
    color: #e74c3c;
}

.text-muted {
    color: #999;
    font-size: 13px;
}

.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.login-form-actions {
    margin-top: 30px;
}

.tp-btn-h1 {
    background: linear-gradient(135deg, #f4a800 0%, #f7c047 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tp-btn-h1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 168, 0, 0.3);
    color: #fff;
    background: linear-gradient(135deg, #f4a800 0%, #f7c047 100%);
    border-color: transparent;
}

.tp-btn-h1 i {
    margin-right: 8px;
}

.login-additional-links {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.forgot-password-link, .signup-link {
    color: #f4a800;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.forgot-password-link:hover, .signup-link:hover {
    color: #d98600;
    transform: translateX(3px);
}

.forgot-password-link i, .signup-link i {
    margin-right: 5px;
}

.signup-section {
    padding-top: 20px;
    margin-top: 20px;
}

.signup-highlight {
    color: #f4a800;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.signup-highlight:hover {
    color: #d98600;
}

.signup-highlight i {
    margin-right: 5px;
}

.text-end {
    text-align: right;
}
