﻿/*#region resetCss*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*#endregion*/

body {
    font-family: 'Inter';
    font-style: normal;
}

.logIn{
    width:fit-content;
    margin: 0 auto;
}

.login__form {
    width: fit-content;
}

.login_container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.login__title {
    text-align:center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #212121;
}

.login__suptitle {
    text-align:center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6E6E6E;

    margin-top:12px;  
}

/*#region EmailContainer*/
.login__emailContainer{
    width: fit-content;
    margin: 32px auto auto;
}

.emailContainer__title {
    display: block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

/*#endregion */

/*#region PasswordContainer*/

.login__passwordContainer {
    width: fit-content;
    margin: 16px auto auto;
}

.passwordContainer__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

/*#endregion */

/*#region showPassword*/
#showPassword {
    margin-top:16px;
    width:fit-content;
    cursor: pointer;
    display:flex;
    align-items:center;
}

#showPassword__input {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6E6E6E;
}

.showPassword__label {
    display:inline;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6E6E6E;
}
/*#endregion showPassword*/

/*#region button-submit*/
.logIn__submit {
    margin-top: 16px;
    width:fit-content;
}

.submit__button {
    width: 302px;
    height: 40px;
    border: none;
    background: #0F62FE;
    border-radius: 6px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;

    cursor:pointer;
    transition: 0.5s;
}

.submit__button:hover { 
    background-color: #4589FF;
    transition: 0.2s;
}

.submit__button:active {
    opacity: 0.5;
    outline: none !important;
    -webkit-box-shadow: 14px 22px 18px -1px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 14px 22px 18px -1px rgba(0, 0, 0, 0.16);
    box-shadow: 14px 22px 18px -1px rgba(0, 0, 0, 0.16);
}

/*#endregion button-submit*/


.unCorectValidation {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    
    margin-top: 12px;
    text-align: center;
    color: #E34850;
}

.unCorectValidation li {
    list-style-type: none;
    list-style: none;
    padding: 0;
}




/*#region input Styles*/
.inputBase {
    padding-left:10px ;

    width: 288px;
    height: 40px;
    display: block;
    margin-top: 4px;
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;

    transition:0.4s;
}

.inputBase::placeholder {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6E6E6E;
}

.inputBase:hover {
    border-color: #0F62FE;
}

.inputBase:focus {
    background: #FFFFFF;
    border: 1px solid #0F62FE !important;
    box-shadow: 0px 0px 0px 4px rgba(15, 98, 254, 0.25) !important;
    outline:none;
}

/*#endregion */

.validationError {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #E34850;
}

.input-validation-error {
    background: #FFFFFF;
    border: 1px solid #E34850;
    border-radius: 5px
}
/*#region adaptiv*/
@media (max-width: 425px) {
    .login__suptitle {
        font-size: 14px;
        margin-top: 8px;
    }
    .login__emailContainer{
        margin-top:22px;
    }
}
/*#endregion */