@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.login-page{
    min-height:100vh;
    background:linear-gradient(180deg,#dfe8ee 0%,#ffffff 50%,#dfe8ee 100%);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
}

.login-card{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:40px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.login-icon{
    width:80px;
    display:block;
    margin:0 auto 20px;
}

.login-card h1{
    text-align:center;
    color:#111827;
    margin-bottom:8px;
}

.login-card p{
    text-align:center;
    color:#7b8190;
    margin-bottom:25px;
}

.login-tabs{
    background:#e8ebef;
    border-radius:16px;
    padding:5px;
    display:grid;
    grid-template-columns:1fr 1fr;
    margin-bottom:30px;
}

.login-tabs a,
.login-tabs button{
    border:none;
    background:none;
    padding:14px;
    border-radius:12px;
    text-align:center;
    text-decoration:none;
    font-weight:600;
    color:#6b7280;
    cursor:pointer;
}

.login-tabs .active{
    background:#fff;
    color:#111827;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.login-form{
    display:flex;
    flex-direction:column;
}

.login-form label{
    font-weight:600;
    color:#374151;
    margin-bottom:8px;
}

.login-button{
    width:100%;
    border:none;
    border-radius:16px;
    background:#000;
    color:#fff;
    padding:16px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    margin-top:10px;
}

.login-button:hover{
    background:#213B4B;
}

.back-home{
    display:block;
    text-align:center;
    margin-top:20px;
    text-decoration:none;
    color:#227B94;
    font-weight:600;
}

.login-form input,
.login-form select,
.login-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid #dfe3ea;
    background-color: #f9fafb;
    font-size: 14px;
    margin-bottom: 22px;
    outline: none;
    color: #4b5563;
}

.login-form textarea {
    min-height: 100px;
    resize: none;
}

.login-form input:focus,
.login-form select:focus,
.login-form textarea:focus {
    border-color: #227B94;
    background-color: white;
}

.campos-profissional {
    display: none;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}