@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #fafafa;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Wrapper da página */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Card */
.auth-card {
    width: 450px;
    max-width: 550px;
    background: #fff;
    padding: 32px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Título */
.auth-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #e21a2c; /* Vermelho iFood */
    text-align: center;
}

/* Grupo dos campos */
.auth-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Label */
.auth-form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #444;
}

/* Inputs */
.auth-form-group input,
.auth-form-group select,
.auth-form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1.7px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all .2s ease;
    background: #fff;
    color: #444;
}

.auth-form-group input:focus,
.auth-form-group select:focus,
.auth-form-group textarea:focus {
    border-color: #e21a2c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(226, 26, 44, 0.15);
}

/* Erros */
.error {
    color: #e21a2c;
    font-size: 13px;
    margin-top: 5px;
}

/* Botão principal estilo iFood */
.auth-btn {
    width: 100%;
    background: #e21a2c;
    color: #fff;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    margin-top: 10px;
}

.auth-btn:hover {
    background: #c41725;
}

/* Links */
.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: #e21a2c;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}
