/* login form */

/* Phone Verification Form Styles */



.form-form {
    max-width: 600px;
    margin: 100px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-form h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: large;
}

a {
    text-decoration: none;
}

.back {
    direction: rtl;
    color: black;
    font-size: 20px;
    margin-bottom: 10px;
}


/* Login Form Styles */
.container {
    padding: 20px;
}

.form-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-form h2 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}


/* Dark Theme Form Styles */
body.dark .form-form {
    background-color: rgba(40, 40, 40, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
}

body.dark .form-control {
    background-color: #333;
    border: 1px solid #555;
    color: #f0f0f0;
}

body.dark .form-control:focus {
    background-color: #3a3a3a;
    border-color: #daa520;
    box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);
}

/* Orange Theme Form Styles */
body.orange .form-form {
    background-color: rgba(60, 30, 10, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #663300;
}

body.orange .form-control {
    background-color: #442200;
    border: 1px solid #994f06;
    color: #ffd9b3;
}

body.orange .form-control:focus {
    background-color: #552a00;
    border-color: #ff9933;
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}

/* Common Form Styles */
.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.btn-dark {
    transition: all 0.3s ease;
}

/* Dark Theme Button */
body.dark .btn-dark {
    background-color: #daa520;
    border-color: #daa520;
}

body.dark .btn-dark:hover {
    background-color: #ffc040;
    border-color: #ffc040;
}

/* Orange Theme Button */
body.orange .btn-dark {
    background-color: #ff9933;
    border-color: #ff9933;
    color: #332010;
}

body.orange .btn-dark:hover {
    background-color: #ffaa44;
    border-color: #ffaa44;
}

.text-primary {
    transition: color 0.3s ease;
}


/* Dark Theme Link */
body.dark .text-primary {
    color: #daa520 !important;
}

body.dark .text-primary:hover {
    color: #ffc040 !important;
}

/* Orange Theme Link */
body.orange .text-primary {
    color: #ff9933 !important;
}

body.orange .text-primary:hover {
    color: #ffaa44 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-form {
        margin: 30px auto;
        padding: 20px;
    }

    .row {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
}