/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url('../fonts/Montserrat-SemiBold.ttf');
}

/*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/

* {
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Poppins-Regular, sans-serif;


    box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

/*---------------------------------------------*/
a {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #2a9d8f;
}

/*---------------------------------------------*/
p {
    font-family: Montserrat-Regular;
    font-size: 16px;
    line-height: 1.7;
    color: #132329;
}

/*---------------------------------------------*/
input {
    outline: none;
}

textarea {
    outline: none;
}

input:focus::-webkit-input-placeholder,
input:focus::-moz-placeholder,
input:focus:-ms-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-placeholder,
textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
    color: #555555;
}

label {
    display: block;
    margin: 0;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

option {
    font-family: Montserrat-Regular !important;
}

/*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
.txt1 {
    font-family: Montserrat-Medium;
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
}

.bo1 {
    border-bottom: 1px solid #999999;
}

/*//////////////////////////////////////////////////////////////////
  [ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.wrap-login100 {
    min-width: 600px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: 1px 3px 7px #ccc;
    padding: 40px 50px;
}

/*==================================================================
  [ Form ]*/

.login100-form {
    width: 100%;
}

.login100-form-title {
    width: 100%;
    display: block;
    font-family: Montserrat-Medium;
    font-size: 39px;
    color: #555555;
    line-height: 1.2;
    text-align: center;
}

.title {
    font-size: 1.5rem;
    font-family: Montserrat-SemiBold;
}

/*------------------------------------------------------------------
  [ Button sign in with ]*/
.btn-face,
.btn-google {
    font-family: Montserrat-SemiBold;
    font-size: 18px;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: calc((100% - 20px) / 2);
    height: 70px;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.btn-google {
    color: #555555;
    background-color: #fff;
}

.btn-face {
    color: #fff;
    background-color: #3b5998;
}

.btn-face:hover,
.btn-google:hover {
    color: #fff;
}

.btn-face:hover::before,
.btn-google:hover::before {
    opacity: 1;
}

/*------------------------------------------------------------------
  [ Logo image ]*/
.logo-img {
    display: block;
    margin: 10px auto 10px;
    width: 200px;
}

/*------------------------------------------------------------------
  [ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    background-color: white;
    border-radius: 4px;
    margin-left: -2px;
}

.input100 {
    font-family: Montserrat-Regular;
    color: #333333;
    line-height: 1.2;
    font-size: 15px;
    border: 2px solid #2a9d8f;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: white;
    display: block;
    width: 100%;
    padding: 15px 20px;
}

.input100:focus {
    border: 2px solid #ff8c00;
}

/*------------------------------------------------------------------
  [ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.login100-form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    background-color: #2a9d8f;
    margin-top: 30px;
    border-radius: 4px;
    font-family: Montserrat-SemiBold;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.login100-form-btn:hover {
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16) !important;
    opacity: 0.85;
}

/*------------------------------------------------------------------
  [ Alert validate ]*/

.validate-input::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    border-radius: 2px;
    padding: 4px 25px 5px 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    opacity: 0;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;

    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
}

@media (max-width: 992px) {
    .alert-validate::before {
        opacity: 1;
    }
}

.invalid-feedback strong {
    color: #c80000;
}

/*//////////////////////////////////////////////////////////////////
  [ Responsive ]*/
@media (max-width: 768px) {
    .wrap-login100 {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 576px) {
    .wrap-login100 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn-face,
    .btn-google {
        width: 100%;
    }
}

.p-b-9 {
    padding-bottom: 9px;
}

.p-t-31 {
    padding-top: 31px;
}

.m-t-17 {
    margin-top: 17px;
}

.navbar-nav {
    list-style: none;
    padding-left: 0;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 2rem !important;
}



.text-center {
    text-align: center;
}

.txt1 {
    font-size: 0.95rem;
}

.txt2 {
    font-family: Montserrat-Regular;
    font-size: 0.9rem;
    color: #999999;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.col-md-6 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    font-family: Montserrat-Regular;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;

}

.list-group {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.list-group-item {
    padding: 0.25rem 0;
    font-family: Montserrat-Regular;
    font-size: 0.9rem;
}