body{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 30em;
}

label{
    text-align: right;
    margin-right: 10px;
    border-left: 3px solid black;
    padding-left: 15px;
    
}

.champ{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.ipt_champ_login{
    font-size: 20px;
    width: 30%;
}

#title{
    font-size: 5em;
    padding-top: 1em;
}

#form_login{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 12em;
    width: 60%;
}

#champ_login{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

#sbt_login{
    min-width: 300px;
    min-height: 60px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #4FD1C5;
    background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
}

#sbt_login:hover, #sbt_login:focus{
    color: #313133;
    transform: translateY(-6px);
}

#sbt_login:active{
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}





@media screen and (max-width: 1280px) and (orientation: portrait){
    body{
        height: 35em;
    }
    
    .ipt_champ_login{
        width: 100%;
    }
    
    #title{
        font-size: 4em;
    }
    
    #form_login{
        height: 20em;
        width: 90%;
    }
}