/* client/assets/css/custom.css 
Colors: #2f6682 #f28c27

*/
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f9;
}

.navbar-brand {
    font-family: 'Open Sans', sans-serif;
}

.hero {
    height: 80vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    border-radius: 50px;
    padding: 10px 30px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}
#submit_request_btn{
background-color: #f28c27;
border: none;
}
#submit_request_btn:hover{
    background-color: #c96a0c;
    border: none;
    }
#download_pdf_btn{
    background-color: #187aac;
    border: none;
    }
#download_pdf_btn:hover{
        background-color: #f28c27;
        border: none;
        }
    #successModalLabel_success{
        background-color: #f28c27;
        border: none;
        }

        .auth-form {
            background: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin: auto; /* centers the form on the page */
            margin-top: 100px;
        }
        .auth-form h2 {
            color: #2f6682;
            font-weight: bold;
            text-align: center;
        }
        .auth-form button {
            background-color: #2f6682;
            border-color: #2f6682;
        }
        .auth-form button:hover {
            background-color: #f28c27;
            border-color: #f28c27;
        }
        .auth-form p {
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
        }
    
        .auth-form p a {
            color: #2f6682;
            text-decoration: underline;
        }
    
        .auth-form p a:hover {
            color: #f28c27;
        }

        .centered-text {
            text-align: center; /* Centers the text horizontally */
            padding: 23px;
          }
          
          .centered-text p{
            display: inline; /* Keeps both elements on the same line */
          }
          .centered-text a {
            display: inline; /* Keeps both elements on the same line */
         
          text-decoration: none;
          color: #2f6682;
        }
@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
        color: #f28c27;
        font-weight: 500 !important;
    }
}
.display-4 {
    font-size: 3.5rem;
    color: #f28c27;
    font-weight: 500 !important;
}