:root {
    --primary-color: #F97316;
    --dark-color: #1F2937;
    --light-color-1: #F3F4F6;
    --light-color-2: #FFFFFF;
    --light-orange-bg: #FFF7F2;
    --font-family: 'Cairo', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-color-2);
}

.custom-sign-in-container .form-control,
.custom-sign-in-container .form-check-input {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #E5E7EB;
}

.custom-sign-in-container .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.1);
}

.custom-sign-in-container .input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.fa-eye.input-icon {
    right: auto !important;
    left: 15px !important;
}

.custom-sign-in-container .form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--light-color-2) !important;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.custom-btn-primary:hover {
    opacity: 0.9;
}

.custom-link {
    color: var(--primary-color);
    text-decoration: none;
}

.custom-link:hover {
    text-decoration: underline;
}

.custom-signup-link a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.custom-signup-link a:hover {
    text-decoration: underline;
}

.custom-info-bg {
    background-color: var(--light-orange-bg);
}

.custom-logo {
    max-width: 180px;
}

.custom-logo-mobile {
    max-width: 150px;
    background-color: var(--dark-color);
    padding: 20px;
    border-radius: 10px;
}

.custom-info-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.75rem;
}

.custom-info-text {
    color: #4B5563;
    max-width: 450px;
    margin: 0 auto 2rem auto;
}

.custom-features-list span {
    color: var(--dark-color);
    font-weight: 600;
}

.custom-features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.custom-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.custom-form-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.custom-form-subtitle {
    color: #6B7280;
    margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
    .custom-info-bg {
        display: none;
    }
    .custom-form-wrapper {
        max-width: 100%;
    }
}