/** Hash Configs **/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Poppins:wght@100;300&display=swap');


* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}

body {
    background-image: url(https://el.hashhackcode.com/wp-content/uploads/2024/04/loginpage-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:100% 100%;
}

/* ----------------------------- */

.login_page {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100vh;
    width: 100%;
    padding: 0 13%;
}

.logo {
    width: 49%;
}

.line {
    width: 2%;
}

.input_field {
    width: 49%;
}

/* -------------------------------------- */

.logo img {
    width: 50%;
    height: auto;
}

/* ------------------------------------- */

.line {
    width: 5px;
    height: 40%;
    background-color: #ffffff;
    border-radius: 10px;
}

/* ------------------------------------- */

.input_field {
    padding-left: 10%;
}

.input_field h2 {
    font-size: 4rem;
    color: #ffffff;
    padding-bottom: 4%;
}

.input_field label {
    font-size: 2.3rem;
    color: #ffffff;
    padding-bottom: 2%;
    font-weight: 500;
}

.input_field input,
button {
    height: auto;
    padding: 2%;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1.7rem;
    margin-bottom: 2%;
    color: #ffffff;
    border: 2px solid #EEEEEE;
    background-color: rgb(238, 238, 238, 0.3);

}

::placeholder {
    color: #ffffff;
    opacity: 1;
}

.forget a {
    padding-top: 2%;
    font-size: 2rem;
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}

.sign_btn button {
    color: #9578D9;
    font-size: 2rem;
    font-weight: 600;
    width: 100%;
    margin-top: 10%;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
}

/* ------------------------------------------------------------------------------- */
/* mobile responsive */

/* tablet screen*/
@media only screen and (min-width:768px) and (max-width: 849px) {
    .login_page {
        padding: 0 10%;
    }

    /* ------------------------------------- */

    .line {
        width: 5px;
        height: 20%;
    }

    .forget a {
        font-size: 1.5rem;
    }

}

/* mobile screen landscape*/
@media (min-width:300px) and (max-width:951px) and (orientation: landscape) {

    body{
        background-size: 100% 140%;
    }
    .login_page {
        padding: 0 10%;
    }


    .line {
        width: 5px;
        height: 65%;
    }

    /* ------------------------------------- */

    .input_field {
        padding-left: 10%;
    }

    .input_field label {
        font-size: 1.8rem;
        padding-bottom: 1%;
    }

    .input_field input,
    button {
        padding: 1% 3%;
        font-size: 1.5rem;
        border-radius: 8px;
    }

    .forget a {
        padding-top: 2%;
        font-size: 1.2rem;
    }

    .sign_btn button {
        color: #9578D9;
        font-size: 1.5rem;
    }
}

/* mobile screen portrait */
@media (min-width:0px) and (max-width:449px)and (orientation: portrait) {
    body {
        background-size: 200% 115%;
    }

    .login_page {
        display: flex;
        flex-direction: column;
        padding: 0 10%;
    }

    .logo {
        width: 100%;
    }

    .line {
        display: none;
    }

    .input_field {
        width: 100%;
    }

    .input_field {
        padding-left: 0%;
    }

    /* -------------------------------------- */

    .logo img {
        margin-bottom: 5%;
    }

    /* ------------------------------------- */

    .input_field input,
    button {
        padding: 3%;
        border-radius: 8px;
    }

    .forget a {
        font-size: 1.8rem;
    }

    .sign_btn button {
        margin-top: 15%;
    }

}