﻿.form-group {
    margin-top: 15px;
    margin-bottom: 25px;
}

    .form-group .fa {
        font-size: 16px;
        color: #6c757d;
        pointer-events: none;
    }

    .form-group label {
        font-size: 15px;
        color: dimgray;
        margin-bottom: 5px;
    }

.dna-input {
    height: 50px;
    padding-left: 40px;
    font-size: 16px;
    font-weight: normal;
    color: dimgray;
    transition: all 0.3s ease-in-out;
    border-color: #D9D9D9;
    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    box-shadow: 0px 0px 0px 0px rgba(0.25);
}

    .dna-input::placeholder, .select-message {
        font-size: 14px;
        color: #888;
    }


    .dna-input:focus {
        border: 2px solid var(--bs-primary-color);
        background-color:#cce9f7da;
        outline: none;
    }

.dna-check {
    height: 50px;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    border-color: #D9D9D9;
    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    box-shadow: 0px 0px 0px 0px rgba(0.25);
}

.form-check-input:checked {
    background-color: #01BAB3;
    border-color: #9edffd;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #9edffd;

}

.form-group .svg-inline--fa {
    font-size: 32px;
    color: lightgray;
    pointer-events: none;
    transition: color 0.3s;
}

.position-relative:focus-within .svg-inline--fa {
    color: #01BAB3;
}

.input-icon {
    position: absolute; /* Position the icon absolutely */
    left: 15px; /* Adjust left position as needed */
    top: 50%; /* Position icon at the center vertically */
    transform: translateY(-50%); /* Center vertically */
    font-size: 16px; /* Adjust size of the icon */
    color: dimgray; /* Icon color */
}

.mandatory-icon {
    color: #01BAB3;
}
#spinnerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.spinner-container {
    text-align: center;
}