@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@@,14..32,100..900;1,14..32&display=swap');

.left-header {
    display: flex;
    align-items: center;
}
.left-header-logo {
    margin: 0%;
    padding-left: 15px;
    color: #005BB5;
}

.right-header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.right-header-loginbutton {
    font-size: 11px;
    padding: 10px 15px;
    margin: 10px;
}
.right-header-link {
    text-transform: uppercase;
    color: #1976D2;
    letter-spacing: 2px;
    font-weight: 520;
    padding: 0 15px 0 15px;
}  
a {
    text-decoration: none;
}

button {
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #FFFFFF;
    background:#1976D2;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
}

.sharebutton, #sharebuttonlink {
    width: 100%;
    margin: 10px 0;
}
.sharebutton {
    padding: 16px 10px;
}

.command {
    margin: 15px 0 15px 0;
}

.main-login {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login{
    width: 50%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.left-login > h1 {
    color:#005BB5;
    margin: 0 0 20px 0;
}
.left-login-areas {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-left: 50px;
}

.textfield{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    row-gap: 5px;
}

.textfield > input{
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #D2D2D2;
    color:#000000;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield > label {
    margin-bottom: 2px;
    color:#000000;
}
.textfield > input::placeholder{
    color:#000000;
}

.right-login{
    width: 50%;
    height: 90vh;
    display: grid;
    grid-template-rows: 10% 90%;
    align-items: center;
}
.bt{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px;
}
.im{
    display: flex;
    justify-content: center;
    align-items: center;
}
.right-login-image{
    width: 25vw;
}

@media only screen and (max-width:950px) {
    .card-login  { width: 85%; }
}

@media only screen and (max-width:600px) {
    .card-login {
        width: 90%;
    }
    .main-login{
        flex-direction: column;
    }
    .left-login > h1{
        display: none;
    }
    .left-login{
        width:100%;
        height: auto;
    }
    .right-login{
        width:100%;
        height: auto;
    }
    .left-login-image{
        width: 25vh;
    }

    .header{
        height: 20vh;
    }
    .main-login{
        height: 80vh;
    }
 
    .left-header{
        align-items: start;
        margin-top: 20px;
    }
    .right-header{
        margin-top: 20px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
}
