/* CUSTOM FORM */

/* input */
.form-control {
    border: 1px solid #9b9b9b;
}

/* validation */
.not-valid {
    border: 2.5px solid #FF3333;
}

.form-control.not-valid:focus {
    border-color: #FF3333;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.6);
}

.not-valid-text {
    display: block; 
    color: #dc3545;
}

/* CUSTOM CARD */

/* card */
.guest-footer {
    color: #f5f5f5;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-card {
    background-color: #f5f5f5;
    opacity: 1;
    width: 90%;
    margin-top: 20%;
}

.card-link {
    font-size: 13px;
}

/* loading spinner */
.loading-spinner {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: -2px;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}