body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F7FB;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 20px;
    text-align: center;
}
header {
    margin-bottom: 20px;
}
.logo-wrapper {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.logo-wrapper img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}
.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}
.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-group {
    margin-bottom: 15px;
    text-align: left;
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}
input[type="text"], input[type="password"], 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;
    width: 100%;
    font-size: 16px;
}
.btn-primary:hover {
    background-color: #0e3e73;
}
.footer {
    background-color: #062f60;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
.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;
}