* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background: #fff;
    transition: all 0.2s ease;
}

input::placeholder {
    color: #999;
}

input:focus {
    outline: none;
    border-color: #00ab63;
    box-shadow: 0 0 0 2px rgba(0, 171, 99, 0.2);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.forgot-password {
    display: block;
    color: #00ab63;
    text-decoration: none;
    font-size: 14px;
    margin: -12px 0 24px;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 14px;
    background-color: #00ab63;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover {
    background-color: #009957;
}

.signup-link {
    text-align: center;
    margin-top: 24px;
}

.signup-link a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.signup-link a:hover {
    color: #00ab63;
}


.jade-alert {
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    border: 1px solid transparent;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    align-items: center;
    gap: 12px;
}

.jade-alert.is-warning {
    background: #ff9d0029;  /* fundo amarelo claro */
    border-color: #ff80007d; /* borda alaranjada suave */
    color: #993b00;          /* texto laranja escuro */
}

.jade-alert__main {
    display: flex;
    gap: 12px;
    align-items: center;
}

.jade-icon svg {
    width: 24px;
    height: 24px;
}

.jade-alert__content {
    flex: 1;
}
