* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f7f5;
    min-height: 100vh;
}

/* CONTAINER */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* CARD */
.auth-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-card.large {
    max-width: 520px;
}

/* LOGO */
.logo {
    padding-top: 15px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    padding-bottom: 6px;
}

h1 {
    margin-bottom: 5px;
}

p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* INPUTS */
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    padding-bottom: 8px;
}

.input-group i {
    margin-right: 10px;
    color: #047857;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* BOTÃO */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #047857;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #065f46;
}

/* INFO / PROMO */
.info, .promo {
    background: #ecfdf5;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* LINK */
.link {
    display: block;
    margin-top: 15px;
    font-size: 14px;
}

.link a {
    color: #047857;
    text-decoration: none;
    font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


.logoon {
    width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 3px;
    color: #047857;
}
