﻿/* General Setup */
body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', 'Nunito', sans-serif; /* Rounded fonts work best */


        background: linear-gradient(180deg, #ffe0b2 0%, #ffffff 100%);
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Header & Mascot */
.mascot {
    width: 80px;
    margin-bottom: 10px;
}

h1 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

p {
    color: #666;
    margin-bottom: 25px;
}

/* The Card (Matches the "Bidget" style) */
.login-card {
    background: white;
    padding: 40px;
    border-radius: 30px; /* High rounding */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #E0E0E0;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
    margin-left: 5px;
}

input {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #E0E0E0;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

    input:focus {
        outline: none;
        border-color: #42A5F5; /* Dashboard Blue */
    }

/* Button (Matches the "Start Now" button) */
.btn-start {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50; /* Action Green */
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 0 #388E3C; /* Depth effect */
    transition: transform 0.1s;
}

    .btn-start:active {
        transform: translateY(3px);
        box-shadow: 0 1px 0 #388E3C;
    }

/* Footer Links */
.card-footer {
    margin-top: 20px;
    color: #999;
    font-size: 0.9rem;
}

    .card-footer a {
        color: #42A5F5;
        text-decoration: none;
        font-weight: bold;
    }

.coppa-badge {
    width: 100px;
    margin-top: 30px;
    opacity: 0.8;
}
