@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

a {
    text-decoration: none;
}

/**/

.body {
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: #FFFFFF;
}

.wrapper {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

/**/

.logo {
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 64px;
}

.error {
    display: none;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: red;
    margin-top: 10px;
}

.subtutle {
    margin-top: 50px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 21px;
    color: #2d333a;
    text-align: center;
}

.subtutle span {
    color: #34ac8f;
}

h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #2d333a;
    text-align: center;
    margin-top: 50px;
}

form {
    margin-top: 24px;
}

input {
    font-family: "Open Sans", sans-serif;
    padding: 0 16px;
    font-size: 16px;
    color: #2d333a;
    border-radius: 6px;
    height: 52px;
    border: 1px solid #c2c8d0;
    width: 100%;
    margin: 3px auto;
}

form button {
    font-family: "Open Sans", sans-serif;
    padding: 0 16px;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #34ac8f;
    border-radius: 6px;
    height: 52px;
    width: 100%;
    margin-top: 24px;
}

.haveAccaount {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
}

.haveAccaount span {
    color: #34ac8f;
}

.or {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    padding: 24px 0 0;
    align-items: center;
    justify-content: center;
    width: 320px;
    vertical-align: baseline;
}

.or span {
    font-family: "Open Sans", sans-serif;
    text-align: center;
    flex: .2 0 auto;
    margin: 0;
    height: 12px;
}

.or:before, .or:after {
    content: "";
    border-bottom: 1px solid #c2c8d0;
    flex: 1 0 auto;
    height: .5em;
    margin: 0;
}

/**/

.btn-gr {
    margin-top: 24px;
}

.btn-gr button {
    display: flex;
    align-items: center;
    grid-column-gap: 15px;
    color: #2d333a;
    border-radius: 6px;
    border: 1px solid #c2c8d0;
    margin-bottom: 8px;
    width: 100%;
    height: 52px;
    padding: 0 8px;
    text-align: left;
    font-size: 16px;
}

.btn-gr button:hover {
    box-shadow: inset 0 0 0 150px #0000001a;
}

.btn-gr img {
    height: 20px;
    width: 20px;
}

.doc {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 8px;
}

/**/

.doc .link {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #34ac8f;
    text-align: center;
}

/*.separator:before {
    content: " | ";
    margin: 0 8px;
}*/

@media screen and (max-width: 425px) {
    .subtutle {
        margin-top: 40px;
    }
}








