/* ------------------------------
   Auth Container
--------------------------------*/
.auth-container {
    max-width: 380px;
    margin: 3rem 5;
    padding: 2rem;
    background: none;
    border-radius: 10px;
}

/* Title */
.auth-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* ------------------------------
   Form Layout
--------------------------------*/



.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
/*

label {
    font-weight: 600;
    font-size: 0.95rem;
}

input[type="username"],
input[type="password"] {
    padding: 0.7rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input:focus {
    border-color: #ff00fb;
    outline: none;
} */

/* ------------------------------
   Button
--------------------------------*/
.login-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    background: #0078ff;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.auth-btn:hover {
    background: #005fcc;
}

/* ------------------------------
   Footer Text
--------------------------------*/
.auth-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

.auth-footer a {
    color: #b300c7;
    text-decoration: none;
    font-weight: 600;
}

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