/* 
===================================================
   Interactive Fun Login CSS
===================================================
*/

:root {
    --bg-color: #f7ede2; /* Soft pastel background */
    --card-bg: #ffffff;
    --text-color: #2b2d42;
    --primary: #f28482;
    --primary-hover: #e56b6f;
    --border-color: #e2e8f0;
    --input-bg: #f8f9fa;
    --shadow: 0 10px 30px rgba(43, 45, 66, 0.1);
}

/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} */

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: auto;
}

/* =========================================
   SVG Characters Container
========================================= */
.characters-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1; /* Behind the card slightly */
}

.top-characters {
    height: 250px;
    margin-bottom: -40px; /* Pull the card over characters slightly */
}

svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* SVG Parts Classes */
.pupil {
    transform-origin: center;
}

.mouth {
    transition: d 0.3s ease;
}

/* =========================================
   Login Form Card
========================================= */
.login-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    z-index: 2;
}

.form-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.form-card h2 {
    font-size: 1.8rem;
    line-height: 26px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-card p {
    font-size: 0.9rem;
    color: #8d99ae;
    margin-bottom: 10px;
}

.form-card .input-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-card .input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8d99ae;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 12px;
}

.form-card .input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px !important;
    background: var(--input-bg);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    outline: none;
}

.form-card .input-group input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(242, 132, 130, 0.1);
}

.form-card button#btnSearch {
    width: 100%;
    padding: 10px;    
    margin-top: 0px;    
    box-shadow: 0 4px 10px rgba(242, 132, 130, 0.3);
}

.form-card button#btnSearch:hover {    
    box-shadow: 0 6px 15px rgba(242, 132, 130, 0.4);
}

.form-card button#btnSearch:active {    
    box-shadow: 0 2px 5px rgba(242, 132, 130, 0.3);
}
