﻿@import url("../../fonts/poppins/poppins.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
    user-select: none;
}

main {
    height: 100vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;  
}

.form-container {
    width: 500px;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
    border-color: #083cb4;
}

#btnSubmit,
.bg-microbin {
    background-color: #083cb4;
    color: #fff;
    border-color: #083cb4;
}

    .bg-microbin:hover {
        color: #fff;
    }

a {
    color: #083cb4;
    text-decoration: none;
}

label {
    font-weight: 500;
}

.errorMessage {
    margin-left: 10px;
    font-size: 13px;
    color: #dc3545;
}

.form-control.is-invalid:focus {
    box-shadow: none;
}

/*Internation drpdown*/
.iti {
    display: block;
}

.iti__search-input:focus-visible {
    outline: none
}
/*Internation drpdown end*/

#popAnimation {
    animation: 1s cubic-bezier(.165,.84,.44,1) forwards blowUpContent
}

@keyframes blowUpContent {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(1);
    }
}
