/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 350px;
    height: auto; /* Adjust height based on content size */
    padding: 40px 30px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    /* box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff; */
}

.text-center .fs-6 {
    font-size: 16px; /* Adjust font size as needed */
    margin-top: 10px; /* Add margin top for spacing */
    text-align: center;
}

.logo {
    width: 80px;
    margin: auto;
}

.logo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #5f5f5f,
        0px 0px 0px 5px #ecf0f3,
        8px 8px 15px #a7aaa7,
        -8px -8px 15px #fff;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
    text-align: center;
}

.wrapper .alert {
    font-size: 0.8rem;
    padding-bottom: 10px;
    color: #f00404;
}

.wrapper .form-field {
    display: flex; /* Use flexbox */
    align-items: center; /* Align items vertically */
}

.wrapper .form-field input,
.wrapper .form-field select {
    flex: 1; /* Allow input field to grow and fill remaining space */
    width: 100%;
    border: none !important; /* Remove border */
    outline: none;
    background: none;
    font-size: 1.0rem;
    color: #666;
    padding: 10px 15px 10px 10px;
    box-shadow: none; /* Remove any box shadow */
    appearance: none; /* Remove any default appearance */
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper .form-field .fas {
    color: #555;
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #00008B;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1,
        -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}

.wrapper .btn:hover {
    background-color: #039BE5;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

.wrapper a:hover {
    color: #039BE5;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}

.checkbox-options input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px; /* Adjust spacing between checkboxes and labels */
}

.checkbox-options label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; /* Adjust spacing between labels */
}
