@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    background-color: #f0f4f8;
    color: #333;
}
header {
    text-align: center;
    padding: 50px 0;
}
header h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2b2b2b;
}
header h3 {
    font-size: 1.5em;
    font-weight: 400;
    color: #555;
    margin-top: 10px;
}
section {
    margin-bottom: 40px;
}
h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
p, li {
    font-weight: 400;
    font-size: 1.1em;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
ul li::before {
    content: "\2713";
    color: #007BFF;
    font-weight: bold;
    margin-right: 10px;
}
.button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}
.button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.5);
}
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
}

.profile-card-header {
    height: 100px; /* Same height as before */
    background: linear-gradient(to right, #8dbef1, #ffb096);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 0.75rem; /* Matches the `rounded-top-3` class */
    border-top-right-radius: 0.75rem; /* Matches the `rounded-top-3` class */
}

.card-header-accordion-height {
    height: 1.75rem
}

h6 {
    font-weight: 300; /* Adjust the value as needed (100 to 900, lower is thinner) */
}

body {
    background-color: #f8f9fa; /* Light background */
}
.signup-container {
    max-width: 400px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.signup-container h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.signup-container form .form-control {
    margin-bottom: 15px;
}
.signup-container .btn-primary {
    background-color: #4a5fe4;
    border: none;
    font-weight: bold;
}
.signup-container p {
    margin-top: 15px;
    text-align: center;
}
.error-message {
    color: red;
    font-size: 14px;
    display: none;
}