@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900');

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

body {
    font-family: "Montserrat", sans-serif !important;
    font-style: normal;
}

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

:root {
    --text-brown: #988074;
    --text-black: #2C2D2C;
    --text-gray: #686868;
    --text-soft-gray: #E5E8E6;
    --text-pink: #998074;
    --text-soft-pink: #E6D8D2;
}

.wrap-input100 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    height: 80px;
    position: relative;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid #000;
}

.label-input100 {
    font-size: 18px;
    color: #000;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;

    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 44px;
    left: 0;
    top: 30px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100 {
    display: block;
    width: 100%;
    background: transparent;
    font-size: 16px;
    color: #8A92A6;
    line-height: 1.3;
    padding: 0 46px;
    outline: none;
    border: none;
    /* border: 1px solid #000; */
}

input.input100 {
    height: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #000;
    /* border: 1px solid #6675df; */
    border-radius: 10px;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.eff-focus-selection {
    visibility: visible;
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.input100:focus {
    height: 48px;
}

.input100:focus+.focus-input100+.label-input100 {
    top: 14px;
    font-size: 16px;
    font-weight: bold;
    /* background-color: red; */
}

.has-val {
    height: 48px !important;
}


.has-val+.focus-input100+.label-input100 {
    top: 12px;
    font-size: 16px;
    font-weight: bold;
}

.forgot-password {
    color: var(--text-pink);
    text-transform: uppercase;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--text-pink);
    font-weight: 700;
}

.remember {
    color: var(--text-black);
    text-transform: uppercase;
    font-weight: 500;
}

.btn-sign-in {
    background-color: var(--text-black);
    padding: 0.9rem 0;
    border-radius: 8px;
}

.btn-sign-in:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #000;
}


.btn-sign-in span {
    color: var(--text-soft-gray);
}

.btn-sign-in .btn-text {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 5px;
}

.text-title {
    text-transform: uppercase;
    text-align: start;
    color: var(--text-black);
    font-weight: 600;
    font-size: 1.5rem;
}

.title-header h1 {
    text-transform: uppercase;
    font-weight: 800;
}

.powered-text {
    text-transform: uppercase;
    color: var(--text-black);
    font-weight: 600;
}

@media (max-width: 768px) {
    .text-title {
        text-align: center;
        font-size: 18px;
    }

    .title-header h1 {
        text-align: center;
    }

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

    .has-val+.focus-input100+.label-input100 {
        font-size: 14px;
    }

    .label-input100 {
        padding-left: 24px;
        font-size: 14px;
    }

    .input100 {
        padding: 0 26px;
    }
}

@media (min-width:767px) and (max-width:1400px) {
    .wrap-input100 {
        margin-top: 15px;
        height: 70px;
    }

    .label-input100 {
        top: 25px;
        padding-left: 30px;
    }

    .input100 {
        padding: 0 30px;
    }

    .input100:focus {
        height: 40px;
    }

    .title-header h1 {
        font-size: 2.2rem;
    }
}
