@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

*{
    font-family: 'Montserrat';
}

span{
    color: red;
}

#logo {
    align-content: center;
    width: 300px;
}

.title {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

#form-row {
    margin-left: 10px;
}

.orangered {
    background-color: orangered;
    color: #fff;
    border-radius: 50px;
}

.orangered:hover {
    background-color: #001457;
    color: #fff;
}

.form-select {
    color: #757474;
}

#registro {
    width: 50%;
    display: inline-block;
    vertical-align: top;
}

#registro_logo {
    width: 250px;
    display: inline-block;
    width: 50%;
    position: absolute;
    margin-top: 60px;
}



@media screen and (min-width: 360px) and (max-width: 900px) {
    #form-row {
        margin-left: 0px;
    }
    #registro_logo {
        display: none;
    }
    #registro {
        justify-content: center;
        width: 100%;
        margin-bottom: 50px;
    }
    p {
        font-size: 30px;
        font-family: 'Montserrat', sans-serif;
    }
}