/* Custom button styles */
.btn-custom {
    border-radius: 0px;
    background-color: transparent;
    border: 2px solid #153485;
    color: #153485;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
    background-color: #153485;
    color: #ffffff;
}

/* Existing CSS content */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
    font-family: 'Raleway', sans-serif;
}

.card {
    background-color: #f8f9fa;
}

.btn {
    border-radius: 0px;
}

@media (max-width: 768px) {
    .card-header h3 {
        font-size: 1.25rem;
    }
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: white;
    font-family: 'Raleway', sans-serif;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ddd;
}

.brand-text {
    color: white;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 991px) {
    .navbar-light .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
    }
}

.card {
    margin-top: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.card-body hr {
    margin: 20px 0;
}

.alert {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
}

.form-label {
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
    .btn-lg {
        width: 100%;
    }
}

.text-center {
    text-align: center !important;
}

/* In your CSS file or within a <style> tag in your HTML file */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.container {
    flex: 1;
}

footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

body {
    background: linear-gradient(to right, #ece9e6, #ffffff);
    font-family: 'Arial', sans-serif;
}
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.02);
}
.card-body {
    background-color: #fff;
    padding: 2rem;
}
.card h1, .card h2 {
    color: #173485;
}
.card a {
    color: #1e429c;
    text-decoration: none;
}
.card a:hover {
    text-decoration: underline;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
ul li {
    padding: 0.5rem 0;
}

.content-container {
    padding-bottom: 60px; /* Adjust this value as needed */
}
