/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F7FB;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Header Styles */
header {
    margin-bottom: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    margin-top: 30px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-top: 30px;
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
}

.card-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Form Styles */
.radio-buttons-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.radio-buttons-group .form-group {
    width: 100%;
}

.radio-buttons-group label {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    margin-right: 20px;
    color: #444;
}

.credentials-inputs {
    margin-bottom: 20px;
}

.credentials-inputs .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.credentials-inputs label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

.credentials-inputs input[type="email"],
.credentials-inputs input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-primary {
    background-color: #1861b7;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0e3e73;
}

/* Footer Styles */
.full-width-footer {
    width: 100%;
    background-color: #062f60;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons i {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #1861b7;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Additional Styles */
input[type="radio"] {
    margin-right: 5px;
}

p {
    font-size: 0.9rem;
    color: #555;
}

a {
    color: #1861b7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h2 {
    font-weight: 700;
}
