.register_container{
    text-align: center;
    border: 3px solid #01015e;
    border-radius: 20px;
    padding: 20px 25px;
    min-width:300px;
    overflow-y:hidden;
    margin: auto auto;
    border-spacing: 10px;
}

#register_title{
    margin-bottom: 5px;
}

#login_link{
    text-decoration-line: none;
}

#login_link:hover{
    color:#01015e;
    text-decoration-line: underline;
}

.register_button{
    align-items: center;
    border: 3px solid #01015e;
    border-radius: 8px;
    background-color: #01015e;
    color: white;
    box-shadow: none;
    transition: all 0.5s ease;
}

.register_button:hover{
    color: #01015e;
    transform: translate(7px, 0px);
    background-color: white;
    box-shadow: -5px 0px 5px #01015e;
}

.register_field{
    margin-bottom: 10px;
    border-radius: 5px;
    border: 3px solid #01015e;
    box-shadow: none;
    transition: all 0.5s ease;
}

.register_field:hover{
    transform: translate(7px, 0px);
    box-shadow: -5px 0px 5px #01015e;
}