:root {
    --dark-green: #217185;
    --dark-green-active: #217185;
    --light-green-border: #21718550;
    --box-shadow-componentes: 6px 6px 4px #00000025;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    width: 85%;
    min-width: 300px;
    max-width: 840px;
    position: relative;
    align-content: center;
}

.divMain {
    background-color: #F9F7F7;
    border: 1px solid #217185;
    box-shadow: 0 0 15px 2px #65875F25;
    padding: 30px;
    margin: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.divLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.divFormInput {
    display: flex;
    flex-direction: column;
    max-width: 370px;
    min-width: 250px;
    width: 100%;
}

.divForm {
    width: 90%;
    margin: 1em;
}

.form_action {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-nadador {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 200px;
}

.button {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 30px;
    cursor: pointer;
    border: none;
    box-shadow: var(--box-shadow-componentes);
    background-color: #217185;
    width: 100%;
    font-size: 1rem;
}

.button:hover{
    background-color: #225764;
}

.form-action {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    text-align: center;
    max-width: 390px;
    flex-grow: 1;
}

.form-action > a > input[type="button"] {
    background: #217185;
    border: 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.form-action > a > input[type="button"]:hover {
    background: #225764;
}

.form-action > h1 {
    color: white;
}

.div-input-campos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
    margin: 32px 0 24px 0;
}

.div-login-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 242px;
    border-radius: 100%;
    border: 3px solid #FFF;
    background: linear-gradient(180deg, #FFF5F0 0%, #FFF 100%);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
    padding: 16px;
}

.div-input {
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #217185;
    background: #FFF;
    overflow: hidden;
    gap: 16px;
    padding: 4px 8px;
    position: relative;
    min-height: 32px;
}

.div-input img {
    width: 24px;
    z-index: 1;
}

.div-input > input {
    border: 0;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-left: 40px !important;
    min-height: 32px;
}

.div-input > input[type="text"], .div-input > input[type="password"] {
    border: 0;
    flex-grow: 1;
    padding: 4px;
    outline: none;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
} */

.img-login {
    width: 100%;
}

img {
    width: auto;
    height: auto;
}

@media screen and (max-width: 720px) {
    .main {
        width: 70%;
    }

    .divMain {
        flex-direction: column;
        padding: 10px;
        height: 80%;
    }
}