#sign-in-container{
    width: 100%;
    display: flex;
    font-family: 'Rubik', sans-serif;
    color: rgb(9 54 80 / 85%);
    flex-direction: row;
}

#sign-in-container>header{
    width: 40%;
    height: 100vh;
}

.head-title{
    width: 100%;
    height: 100%;
    background-color: rgb(1, 32, 90);
    margin: 0px;
    padding: 0px;
    text-align: center;
    font-size: 3rem;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.header>div>div{
    justify-content: center;
    display: flex;
}

.head-title>nav{
    padding: 0rem 0px 0px 0px;
    text-align: center;
    align-content: center;
}

#sign-form{
    max-width: 500px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 56px 24px;
    border: 2px rgb(1, 32, 90) solid;
    border-radius: 1rem;
    background-color: #f7f5f5;
}

#sign-form>h2{
    margin: 56px 24px;
    text-align: center;
}

#sign-form>form{
    margin: 0 24px 56px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#sign-form>form>input:last-of-type{
    margin-top: 24px;
    color: #fff;
    background-color: rgb(1, 32, 90);
    border-radius: 0.5rem;
    width: 96px;
    padding: 6px 0px;
    box-shadow: 2px 2px 4px #aba7a7;
    transition: scale 300ms ease;
}

#sign-form>form>input:last-of-type:hover{
    scale: 1.05;
    color:  rgb(1, 32, 90);
    background-color:#fff;
    transition: scale 300ms ease;
}

@media (width <= 1100px) {
    #sign-in-container {
      flex-direction: column;
    }

    #sign-in-container>header{
        width: 100%;
        height: unset;
        margin-bottom: 124px;
    }
}

@media (width <= 400px) {

    .head-title{
        font-size: 2.5rem;
    }

    #sign-form{
        max-width: 300px;
        min-width: 200px;
        padding: 56px 8px;
    }
}