/* style.css - Premium Gym Dashboard Styles */
:root {
    --bg-color: #0f172a;
    --panel-bg: rgba(30, 41, 59, 0.7);
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --accent: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

<style> login
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f4f6f9;
}

/* Main Form Box */
.form-container{
    background:#fff;
    padding:30px;
    width:370px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    text-align:center;
}

.glass-panel login-form{
    background:#fff;
    padding:30px;
    width:370px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    text-align:center;
}

.login-container{
    background:#fff;
    padding:30px;
    width:370px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    text-align:center;
}

/* Logo on Top */
.logo{
    width:90px;
    height:90px;
    margin:0 auto 15px;
    border-radius:50%;
    overflow:hidden;
    border:3px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Heading */
.form-container h2{
    margin-bottom:20px;
    color:#333;
}

/* Input Fields */
.input-group{
    margin-bottom:15px;
    text-align:left;
}

.input-group label{
    display:block;
    margin-bottom:5px;
    font-size:14px;
    color:#444;
}

.input-group input{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    outline:none;
    transition:0.3s;
}

.input-group input:focus{
    border-color:#007bff;
}
.input-group select{
    width:100%;
    height:30px;
    padding:0 15px;
    border:1px solid #d0d0d0;
    border-radius:10px;
    font-size:16px;
    outline:none;
    background:#fff;
    transition:0.3s;
}
/* Button */
.btn{
    width:100%;
    padding:10px;
    background:#007bff;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.btn:hover{
    background:#0056b3;
}

.primary-btn{
    width:100%;
    padding:10px;
    background:#007bff;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.primary-btn:hover{
    background:#0056b3;
}


/* Footer */
.footer{
    margin-top:15px;
    font-size:14px;
}

.footer a{
    color:#007bff;
    text-decoration:none;
}
</style>