:root {
    --blue: #27325A;
    --blue-light: #5B6EB1;
    --blue-inactive: #DAE2FD;
    --orange: #EF7B23;
    --orange-light: #FF9C50;
}

.orange {
    color: var(--orange);
}

.blue {
    color: var(--blue);
}

.logo-pic {
    width: 220px;
}

.ava-pic {
    width: 100%;
}


/* Button custom styles */
.btn-blue {
    color: white;
    background-color: var(--blue);
    font-family: 'Poppins', Sans-serif;
    font-weight: 500;
    border-radius: 5px 5px 5px 5px;
    border-width: 0px;
    padding: 10px 45px 10px 45px;
}

.btn-custom-disabled {
    opacity: 0.5
}

.btn-blue:hover {
    color: white;
    background-color: var(--blue-light);
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    border-radius: 5px 5px 5px 5px;
    border-width: 0px;
    padding: 10px 45px 10px 45px;
}

.btn-orange:hover {
    background-color: var(--orange-light);
    color: white;
}

.btn-container {
    width: 100%;
}

/* Headers */
h1 {
    font-family: 'Poppins', Sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--blue);
}

h2 {
    font-family: 'Poppins', Sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--blue);
}

h3 {
    font-family: 'Poppins', Sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: var(--blue);
}

h5 {
    font-family: 'Poppins', Sans-serif;
    color: var(--blue);
}

p {
    font-family: 'Montserrat', Sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 18px;
    color: var(--blue);
}

a {
    font-family: 'Montserrat', Sans-serif;
    color: var(--blue);
}
/* Label for the form fields */
label {
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    line-height: 1em;
}

input.form-control {
    border-width: 0px 0px 1px 0px;
    border-radius: 0px 0px 0px 0px;
    margin-bottom: 30px;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    line-height: 1.5em;
}

input {
    border: var(--bs-border-width) solid var(--bs-border-color);

    border-width: 0px 0px 1px 0px;
    border-radius: 0px 0px 0px 0px;
    margin-bottom: 30px;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    color: var(--bs-body-color);
    background-color: var(--bs-form-control-bg);
    background-clip: padding-box;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.cobi-image {
    width: 400px;
    margin: auto;
}



/* Ensure the body and container take up full height */
html, body {
    height: 100%;
    margin: 0;
}





/* Main content area should be scrollable */
.col-md-9.col-lg-10.p-4 {
    height: calc(100vh - 6rem); /* Full height minus navbar height */
    overflow-y: auto; /* Make the content scrollable */
}
