/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;600&family=Montserrat:wght@600&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap'); */

:root {
    /* Brand Colors */
    --primary-color: #F39C12;     /* Orange */
    --secondary-color: #1F3A93;   /* Navy */
    --hover-color: #D68910;       /* Darker Orange for hover */
    
    /* Backgrounds */
    --background-color: #1F3A93;  /* Hero/Testimonial background */
    --card-background: #ffffff;
    
    /* Text Colors */
    --heading-text: #2C3E50;      /* Charcoal */
    --subtext-color: #BDC3C7;     /* Cool Gray */
    --text-color: #333333;
    
    /* Input Styles */
    --input-border: #BDC3C7;
    --input-hover: #F39C12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background-color);
    /* font-family: 'Poppins', sans-serif; */
}

/* Login Form Container */
form {
    border-radius: 20px;
    margin: 120px auto;
    width: 28% !important;
    background-color: var(--card-background) !important;
    padding: 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Headings */
h4 {
    /* font-family: 'Montserrat', sans-serif; */
    font-size: 2rem !important;
    font-weight: 600;
    color: var(--heading-text);
    margin-bottom: 30px;
    text-align: center;
}

/* Labels */
.form-label {
    font-weight: 600 !important;
    color: var(--heading-text);
    margin-bottom: 6px;
}

/* Input Fields */
.form-control {
    color: var(--text-color);
    border: none;
    border-bottom: 2px solid var(--input-border);
    border-radius: 0;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-control:hover {
    border-bottom-color: var(--input-hover);
    outline: none;
    color: var(--heading-text);
}

/* Primary Button */
.btn-primary {
    width: 100%;
    border: none;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 14px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--hover-color);
}

/* Links */
a {
/* .form-text.mt-3 a { */
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
/* .form-text.mt-3 a:hover { */
    color: var(--primary-color);
}

.navbar-brand{

    font-size: 2.4rem;
    color: var(--primary-color)
}

.navbar-brand:hover{

    color: var(--hover-color);
    text-decoration: underline;

}


/* Responsive Design */
@media only screen and (max-width: 768px) {
    form {
        width: 90% !important;
        margin: 100px auto;
        padding: 30px;
    }
}