#card-medico {
    display: flex;
    height: 100vh;
    background-color: white;
    justify-content: space-between;
    padding: 5%;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    z-index: 5; 
}

#dr {
    width: 40%;
    border-radius: 2vh;
}


#card-login-medico {
    width: 100%;
}

#cabecalho-login-medico {
    display: flex;
    flex-direction: column;
    height: 50%;
    width: 100%;

}

#cabecalho-login-medico h2 {
    width: 70%;
    font-family: "SUSE", sans-serif;
    font-weight: 900;
    font-size: 50px;
    color: #29246b;
}

#cabecalho-login-medico h3 {
    font-family: "SUSE", sans-serif;
    font-weight: 200;
    font-size: 25px;
    color: #29246b;
}

#div-formlogin-medico {
    width: 100%;
}


#composto {
    margin-bottom: 30px;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-right: 15%;
}

#div_botao_medico {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

#div-doutores {
    height: 127%;
    align-items: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#div-doutores h2 {
    font-family: "SUSE", sans-serif;
    color: #29246b;
}

#img-doutores {
    height: 120%;
    width: 170%;
}

.button-alt {
    appearance: none;
    background-color: #29246b;
    border: solid #29246b;
    border-radius: 15px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: "SUSE", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 110px;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 90%;
    will-change: transform;
}

.button-alt:disabled {
    pointer-events: none;
}

.button-alt:hover {
    color: white;
    background-color: #29246b;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
    border: solid #29246b;
}

.button-alt:active {
    box-shadow: none;
    transform: translateY(0);
}


.div-label-input {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    width: 100%;
}

input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    padding: 6px 30px;
    font-family: "SUSE", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

.classe-label {
    padding-left: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
}

.label-has-error {
    top: 22%;
}

.botaoEntrar {
    width: 100%;
}

@media (max-width: 768px) {
    #card-medico {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    #div-doutores {
        display: none;
    }

    #card-login-medico {
        width: 100%;
        padding: 0;
    }

    #cabecalho-login-medico h2 {
        font-size: 28px;
        text-align: center;
    }

    #cabecalho-login-medico h3 {
        font-size: 16px;
        text-align: center; 
    }

    #composto {
        width: 100%;
        margin: 0;
    }

    .button-alt {
        width: 100%;
        padding: 20px; 
    }

    input {
        font-size: 14px;
        padding: 15px 20px;
    }
}