@import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;400;700&family=Roboto:wght@400;700&display=swap");


html,
body {
    width: 100%;
    height: 100%;
    font-family: "Roboto", sans-serif;
}


body {
    display: flex;
    align-items: center;
    justify-content: center;
}

input,
textarea,
button {
    font: 400 1rem Inter, sans-serif;
}

hr {
    opacity: 0.045;
}

form {
    width: 100%;
    max-width: 450px;
}


#senha {
    position: relative;
}

#senha i {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;

    top: 0;
    right: 0px;

    height: 100%;

    cursor: pointer;

}

.btn {
    text-transform: uppercase;
}

.btn:focus {
    box-shadow: none;
}

.btn-main {
    color: #fff;
    background-color: rgba(0, 193, 241, 1);
}

.btn-main:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 154, 192, 1);
    /* border-color: rgba(0, 193, 241, 1); */
}

.btn-main-success {
    color: #fff;
    background-color: #03C03C;
}

.btn-danger {
    background-color: #CC0000;
}

.btn-danger:hover,
.btn-danger:active {
    background-color: #FF0800;
    border-color: #FF0800;
}
