/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(135deg, #eaf3f8, #f9fcff);
}

/* CONTAINER */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* CARD (🔥 LEBIH BESAR + PREMIUM) */
.card {
    background: #ffffff;
    padding: 45px 40px;
    width: 420px; /* 🔥 lebih besar */
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

/* hover subtle biar hidup */
.card:hover {
    transform: translateY(-2px);
}

/* TITLE */
h2 {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 22px;
    color: #72A0C1;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* INPUT (🔥 lebih clean + modern) */
input {
    width: 100%;
    padding: 14px 16px; /* 🔥 lebih tebal */
    border-radius: 12px;
    border: 1px solid #e5edf5;
    background: #f7fbff;
    font-size: 14px;
    transition: all 0.25s ease;
}

input::placeholder {
    color: #a0aec0;
}

input:focus {
    outline: none;
    border-color: #72A0C1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(114,160,193,0.15);
}

/* BUTTON (🔥 lebih bold & clean) */
button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #72A0C1;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

button:hover {
    background: #5c8aa8;
    transform: translateY(-1px);
}

/* LINK TEXT */
p {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

a {
    color: #72A0C1;
    font-weight: 500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}