.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    background: #fdfdfd;
    border-radius: 24px;
    padding: 16px 48px 40px 48px;
    width: 100%;
    max-width: 500px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
}
.auth-card h3 {
    text-align: center;
    font-size: 3.2rem;
    color: #222;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
label {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 8px;
    font-weight: 600;
}
input {
    padding: 14px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.3rem;
    background: #fafbfc;
    transition: border 0.2s;
}
input:focus {
    border-color: #6ab821;
    outline: none;
    background: #fff;
}
button[type="submit"] {
    width: 100%;
    background: #6AB821;
    color: #fff;
    padding: 16px 0;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
button[type="submit"]:hover {
    background: #5ba01b;
}
.auth-links {
    text-align: center;
    margin-top: 16px;
    font-size: 1.4rem;
}
.auth-links a {
    color: #6AB821;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.2s, text-decoration 0.2s;
}
.auth-links a:hover {
    color: #5ba01b;
    text-decoration: underline;
}
@media (max-width: 700px) {
    body {
        background-color: #fdfdfd;
    }
    .auth-card {
        background: none;
        box-shadow: none;
        padding: 0 20px 30px 20px;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
        display: block;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.swal2-popup-custom {
    font-size: 1.8rem;
    font-family: 'Poppins', Arial, sans-serif;
    border-radius: 24px;
}
.swal2-popup-custom .swal2-title {
    font-size: 2.6rem;
    font-weight: 700;
}