@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root{
    --light-blue:#00C8E3;
    --blue:#4266E5;
    --black:#111111;
    --white:#F1F1F1;
}

html{ 
    background: linear-gradient(to right, var(--light-blue),var(--blue));
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: linear-gradient(to right, var(--light-blue),var(--blue));
    font-family: 'Inter', sans-serif;
}

button:focus{
    outline: none;
    transform: scale(0.9);
}

.container{
    max-width: 1250px;
    width: 95%;
    margin: auto;
}
.navTrans{
    background:rgba(255, 255, 255, 0.1);
}

.logoBox{
    padding: 3px;
}

.logo{
    width: 2em;
    height: 2em;
}

.doubleSide{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.illustatorBox{
    width: 100%;
    overflow: hidden;
}

.illustratorWrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.illustrator{
    width: 30em;
    overflow: hidden;
}

form img{
    width: 20px;
    height: 20px;
}

.radiusBox{
    background: var(--white);
    width: 99%;
    min-height: 500px;
    border-radius: 30px 30px 0 0;
    display: flex;
    max-width: 1000px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-bottom: 1rem;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

form div{
    border-bottom: 1px solid var(--black);
    width: 85%;
    max-width: 380px;
    min-width: 100px;
}

form input{
    width: calc(100% - 25px);
    height: 30px;
    margin-top: 1.5rem;
    border: none;
    background: transparent;
    padding: 0 5px;
    border: 5px;
    font-weight: 600;
}

form input:focus{
    outline:1px outset var(--light-blue);
}

.btnboxes, .btnSignUp{
    border: none;
}

.btnboxes, .btnSignUp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btnSignUp{
    background: linear-gradient(var(--light-blue),var(--blue));
    margin: 35px 0 20px 0;
    border-radius: 30px;
}

.signup{
    width: 100%;
    background: transparent;
    border: none;
    padding: 9px;
    color: var(--white);
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
}

.signin{
    background: transparent;
    border: none;
    padding: 9px;
    color: var(--black);
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
}