* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f9d7e 0%, #0d8569 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
}

.login-header {
    background: #0f9d7e;
    padding: 40px 40px 30px;
    text-align: center;
    color: white;
}

.logo-container {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 600;
}

.login-header p {
    font-size: 14px;
    opacity: 0.95;
}

.login-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
    display: block;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
}

.input-wrapper input:focus {
    border-color: #0f9d7e;
    box-shadow: 0 0 0 3px rgba(15,157,126,0.1);
    outline: none;
}

.forgot-password {
    text-align: right;
    margin-top: 8px;
}

.forgot-password a {
    color: #0f9d7e;
    font-size: 13px;
    text-decoration: none;
}

.checkbox-wrapper{
    margin-bottom: 15px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #0f9d7e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.btn-login:hover {
    background: #0d8569;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 16px;
    position: relative;
    font-size: 13px;
    color: #718096;
}

.register-link {
    text-align: center;
    font-size: 14px;
}

.register-link a {
    color: #0f9d7e;
    font-weight: 600;
    text-decoration: none;
}

/* Mensagem abaixo da senha */
.msg-senha {
    margin-top: 6px;
    font-size: 13px;
    display: none;
    line-height: 1.35;
}

.msg-senha.erro {
    color: #e53e3e;
}

.msg-senha.sucesso {
    color: #2f855a;
}

/* Mensagem abaixo da senha */
.msg-senha a {
    color: #0f9d7e;
    text-decoration: none;
    font-weight: 500;
}

.msg-senha a:hover {
    text-decoration: underline;
}