/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #888889, #888889);
    height: 100vh;
    color: #888889;
}

/* CENTER WRAPPER */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* SHARED CARD */
.auth-card {
    width: 380px;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    animation: fadeUp 0.5s ease;
}

/* LOGO AREA */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 60px;
    margin-bottom: 8px;
}

.logo h1 {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

/* FORM TITLE */
.auth-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* INPUT GROUP */
.input-group {
    margin-bottom: 16px;
}

/* INPUT */
input, select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

input:focus, select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

/* BUTTON */
button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #3b82f6;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    background: #2563eb;
}

/* LINK */
.auth-link {
    text-align: center;
    margin-top: 15px;
}

.auth-link a {
    text-decoration: none;
    color: #3b82f6;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}