:root {
    --primary-grey : #303030;
    --secondary-grey: #909090;
    --darkthird-grey: #C4C4C4;
    --third-grey: #d9dbde;
    --font-montserrat-light : "Montserrat-Light";
    --font-montserrat-extra-light : "Montserrat-ExtraLight";
    --font-montserrat-thin : "Montserrat-Thin";
    --font-montserrat-regular : "Montserrat-Regular";
}

@font-face {
    font-family: "Montserrat-Light";
    src: url("../../../static/home/fonts/Montserrat-Light.ttf");
}
@font-face {
    font-family: "Montserrat-ExtraLight";
    src: url("../../../static/home/fonts/Montserrat-ExtraLight.ttf") format('truetype');
}
@font-face {
    font-family: "Montserrat-Thin";
    src: url("../../../static/home/fonts/Montserrat-Thin.ttf") format('truetype');
}
@font-face {
    font-family: "Montserrat-Regular";
    src: url("../../../static/home/fonts/Montserrat-Regular.ttf")
}


body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: var(--font-montserrat-regular);
    -webkit-font-smoothing: antialiased;
}

.main {
    position: absolute;
    width: 25%;
    padding-bottom: 2%;
    left: 37.5%;
    top: 20%;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 15%);
}

.agoranov {
    display: flex;
    flex-direction: column;
    font-size: 100%;
    color: var(--primary-grey);
    padding-top: 5%;
    text-align: center;
}

img {
    width: 25%;
    padding-left: 37.5%;
}

.atlas {
    font-size: 2vh;
    padding-top: 4%;
}

.helper {
    height:2vh; 
    font-size: 70%; 
    text-align: center; 
    padding-top: 4%;
    padding-bottom: 1%; 
    color: red;
}

form {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding-top: 3%;
    padding-left: 15%;
}

label {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--primary-grey);
    font-size: 80%;
    padding-bottom: 2%;
}

input { 
    -webkit-appearance: none;
    padding: 2%;
    margin-bottom: 6%;
    border: solid 1px var(--secondary-grey);
    border-radius: 3px;
    width: 95%;
}

input:focus {
    border: solid 1px var(--secondary-grey);
    outline :none;
    box-shadow: 0px 0px 0px 3px rgba(0, 132, 255, 0.3);
}

.password-line {
    display: flex;
}

.password-line > i {
    cursor: pointer;
    margin-left:-10%;
    margin-top:2.2%;
}


.sign-in {
    background-color: green;
    border : transparent;
    color: white;
    padding:2%;
    width: 100%;
}

.sign-in:hover, .sign-in:focus {
    background-color: rgba(0, 128, 0, 85%);
    cursor: pointer;
    border: transparent;
}

.sign-in:focus {
    box-shadow: 0px 0px 0px 4px rgba(0, 128, 0, 40%);
}




/** Tablets **/
@media screen and (max-width:900px) and (min-width:621px){

    .main {
        width: 40%;
        left: 30%;
    }
}


/** Smartphones**/
@media screen and (max-width:620px) {

    .main {
        width: 80%;
        left: 10%;
    }
}


/** Big screens**/
@media screen and (min-width:2000px) {

    .main {
        width: 50%;
        left: 25%;
    }

    .atlas {
        font-size: 200%;
    }

    img {
        width: 15%;
        padding-left: 42.5%;
    }

    .helper {
        font-size: 130%;
    }

    input {
        font-size: 1vw;
    }

    label {
        font-size: 1vw;
    }
}