.login-back {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    z-index: 2;
}

/* Container for Logo and Form */
.login-back .inner-table.center {
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.inner-table form input {
    background-color: transparent;
    border: none;
    text-align: center;
    color: white;
}

.inner-table form button {
    background-color: transparent;
    border: none;
    text-align: center;
    color: white;
    font-size: 0.8rem;
}

.logo {
    transform: scale(0);
    transition: 800ms transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
}

.logo.loaded {
    transform: scale(1);
}

/* Inputs */
.admin-form input,
.form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-sizing: border-box;
    /* Fix padding issue */
    font-family: 'Inter', sans-serif;
}

.admin-form input:focus,
.form input:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Button */
.admin-form button,
.form button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.admin-form button:hover,
.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
    filter: brightness(1.1);
}

.admin-form button:active,
.form button:active {
    transform: translateY(0);
}