﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');


html, body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.hide-mobile {
    display: none;
}

.main {
    background-color: var(--primary);
    height: auto;
    width: 100%;
    position: relative;
}

.block {
    background-color: #fff;
    padding: 15px;
    position: relative;
    border-radius: 128px 0px 0px 0px;
    top: 60px;
}

.logo {
    /*margin-bottom: 50px;*/
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    width: 240px;
}

    .logo img {
        width: 100%;
    }

.cloud-background {
    position: absolute;
}

.data {
    text-align: left;
    margin-left: 13px;
}

.data-tittle {
    color: #828282;
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    margin-bottom: -9px;
}

.data-subtittle {
    color: #828282;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-left: 20px;
    margin-bottom: 64px;
}

.input-email {
    margin-bottom: 64px;
}

.data-form {
    margin-top: 24px;
}

.form {
    margin-left: 15px;
    margin-right: 20px;
}

label {
    color: #828282;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}

input {
    background-color: #ECECEC;
    border: none;
    border-radius: 5px 5px 5px 5px;
    width: 90%;
    height: 51px;
    margin-bottom: 16px;
    margin-top: 8px;
    padding: 0px 15px;
}

    input::placeholder {
        font-size: 18px;
        line-height: 24px;
        color: #828282;
        opacity: .5;
        padding-left: 10px;
    }


.forgot-password {
    text-align: left;
    margin-bottom: 24px;
}

#toggle {
    float: right;
    margin-right: 19px;
    margin-top: -55px;
    position: relative;
    cursor: pointer;
    z-index: 2;
}

.forgot-password a {
    text-decoration: underline;
    color: #828282;
    line-height: 19px;
    font-size: 14px;
    font-weight: bold;
}

.btn-singin {
    position: relative;
    margin-bottom: 35px;
    text-align: center;
}

.btn-one {
    width: 100%;
    cursor: pointer;
    height: 60px;
    text-transform: uppercase;
    border-radius: 5px 5px 5px 5px;
    border: none;
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    line-height: 27px;
}

.copyright {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

    .copyright img {
        width: 124px;
    }

    .copyright p {
        color: #82828282;
        font-weight: 600;
        font-size: 12px;
        line-height: 17px;
    }

@media screen and (min-width: 768px) {

    html, body {
        overflow: hidden;
    }

    .hide-desktop {
        display: none !important;
    }

    .hide-mobile {
        display: block;
    }

    .main {
        display: flex;
        justify-content: flex-end;
        align-content: center;
        flex-wrap: nowrap;
        flex-direction: row;
        position: relative;
        height: 100vh;
    }

    .block {
        width: calc(40% - 100px);
        border-radius: 40px 0px 0px 40px;
        top: 0;
        height: calc(100vh - 113px);
        box-shadow: -10px 0px 18px #03312929;
        align-items: center;
        padding-left: 100px;
        padding-right: 95px;
        padding-bottom: 57px;
        padding-top: 56px;
        display: flex;
        flex-direction: column;
        align-content: stretch;
        align-items: stretch;
        justify-content: center;
    }

    .logo {
        width: 240px;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
        margin-top: 0;
    }

    .data {
        margin-left: 0;
    }

    .logo img {
        width: 100%;
    }

    .data-form {
        max-width: 500px;
    }

    .grid {
        margin-left: auto;
        margin-right: auto;
        width: 70%;
    }

    .data-subtittle {
        margin-left: 0;
    }

    .form {
        margin-left: 0px;
        margin-right: 0px;
    }

    .cloud-background {
        position: absolute;
        left: 0;
    }

        .cloud-background img {
            height: 100vh;
        }

    .copyright img {
        width: 124px;
    }
}


.external-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    color: #444;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .external-login-btn:hover {
        background-color: #f2f2f2;
    }

    .external-login-btn img {
        width: 18px;
        height: 18px;
    }

.google-btn {
    border-color: #dadce0;
}

.microsoft-btn {
    border-color: #d6d6d6;
}


.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #ffdddf;
    background-color: #fe5461;
    border-color: #fe5461;
}

.blur {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    transition: all 0.5s ease-out;
}