*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'segoe ui', regular;
}
body{
    overflow-x: hidden;
}
.img-div{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    background-color: #00183A;
    background-image: url('../images/background-img.svg');
}
.img-div img{
    width: 60%;
}
.content-div{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 50%;
    align-items: center;
    justify-content: center;
}
.content-div p{
    font-size: 40px;
    margin-bottom: 45px;
}

.button-form{
    display: flex;
    flex-direction: column;
    width: 550px;
    min-width: 70%;
    max-width: 85%;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
}
.button-form button{
    width: 90%;
    height: 70px;
    font-size: 25px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 9px;

}
.signin-btn{
    margin-bottom: 20px;
    background-color: #121F38;
    border: none;
    color: #FFFFFF;
}
.register-btn{
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #00183A;
    border-radius: 9px;
    background-color: transparent;
}
