body{
        padding: 0%;
        margin: 0%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    header {
        width: 100%;
        background-color: #e53935;
        color: white;
        padding: 2% 2%;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .logo {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .logo-img {
        height: 1em;
        width: auto;
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
        animation: pulse 2s infinite;
    }

    header .logo img {
        width: 90px; 
        height: auto; 
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    .footer {
        background-color: #e53935;
        color: white;
        padding: 2% 2%;
        text-align: center;
        width: 100%;
        position: absolute;
        bottom: -1.81%;
    }

    .input-group {
        margin-bottom: 20px;
        text-align: left;
    }

    .input-group label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-size: 14px;
        font-weight: 500;
    }

    .input-group input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        transition: all 0.3s;
        box-sizing: border-box;
    }

    .input-group input:focus {
        border-color: #e53935;
        outline: none;
        box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
    }

    .login-button {
        background-color: #e53935;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 6px;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


    @media (max-width: 480px) {
        .login-container {
            padding: 30px 20px;
        }
        
        .login-container h1 {
            font-size: 20px;
        }
    }

    
    .dm-serif-display-regular {
        font-family: "DM Serif Display", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    h1 {
        font-family: "DM Serif Display", serif;
        font-weight: 400;
        font-style: italic;
    }
    

    .login-container{
        padding: 15px;
    }

    .login-wrapper {
        display: flex;
        justify-content: center;
        gap: 40px;
        padding: 20px;
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
    }

    .login-container {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 20px;
        width: 350px;
        height: 400px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hidden {
        display: none;
    }

    .toggle-button {
        background: none;
        border: none;
        color: #e53935;
        cursor: pointer;
        font-weight: 600;
        text-decoration: underline;
        padding: 0;
        font-size: 1em;
    }
