/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #e4dce4;
}

/* AUTH LAYOUT */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: #fff;
    width: 820px;
    border-radius: 14px;
    display: flex;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* ── MESSAGES ── */
.messages { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.message {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
}
.message button {
    background: none; border: none; cursor: pointer;
    font-size: 18px; padding: 0 0 0 10px; color: inherit; opacity: 0.7;
}
.message button:hover { opacity: 1; }
.message.success { background: #e6f9f0; color: #1a7a4a; border: 1px solid #a3e0c1; }
.message.error   { background: #fdecea; color: #c0392b; border: 1px solid #f5a9a4; }
.message.warning { background: #fff8e1; color: #b07d00; border: 1px solid #ffe082; }
.message.info    { background: #e8f4fd; color: #1565c0; border: 1px solid #90caf9; }
/* LEFT SECTION */
.auth-left {
    flex: 1;
    padding-right: 30px;
}

/* FORM LAYOUT */
.auth-left form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* STANDARD INPUT SIZE */
.auth-left input:not([type="checkbox"]),
.password-field input {
    width: 100%;
    height: 45px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* INPUT FOCUS */
.auth-left input:focus {
    outline: none;
    border-color: #f06292;
}

/* GOOGLE BUTTON (UNCHANGED) */
.google-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    justify-content: center;
    margin-bottom: 15px;
}

.google-btn img {
    height: 18px;
}

/* PRIMARY BUTTON */
.primary-btn {
    margin-top: 10px;
    height: 45px;
    background-color: #f06292;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.primary-btn:hover {
    background-color: #e91e63;
}

/* PASSWORD FIELD */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
}

/* LINKS */
.link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: #555;
}

.link:hover {
    text-decoration: underline;
}

.bottom-text {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

.bottom-text a {
    color: #e91e63;
}

/* RIGHT IMAGE */
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-right img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .auth-card {
        width: 90%;
        flex-direction: column;
    }

    .auth-left {
        padding-right: 0;
    }

    .auth-right {
        margin-top: 20px;
    }
}