@charset "utf-8";
        body {
            margin: 0%;
            font-family: arial, sans-serif;
            background-color: #fdf5e7;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        figure{
            margin-top: 1.5em;
        }

        h2 {
            color: #81c7b4;
            margin-bottom: 20px;
        }

        .login-container {
            background-color: #81c7b4;
            padding: 20px 60px;
            border-radius: 15px;
            text-align: center;
            width: 300px;
            margin-bottom: 10px;
            box-shadow: 0px 2px 3px black;
        }

        label {
            font-weight: bold;
            margin: top 10px;
            color: #69412a;
        }

        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border-radius: 20px;
            border: none;
            outline: none;
            box-shadow: 0px 1px 2px black;
        }

        button {
            background-color: #4caf50;
            border: none;
            padding: 12px 30px;
            border-radius: 20px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            flex: 1;
            box-shadow: 0px 2px 4px black;
        }

        .button-container {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 5px;
        }
        sup{
            color: #e53835;
        }

        /*--------------*/
        /*responsividade*/
        /*--------------*/
        @media(max-width: 360px){
            body{
                flex-direction: column;
            }
            img{
                max-width: 375px;
                margin-bottom: 1.5rem;
            }
            .login-container {
                width: 100%;
                max-width: 375px;
                margin: 1rem auto;
                box-sizing: border-box; 
            }
            .login-container button {
                width: 100%;
                max-width: 320px; /* opcional, se quiser limitar */
                padding: 0.65rem; /* altura confortável */
                font-size: 0.8rem;
                border-radius: 8px;
                box-sizing: border-box;
            }
        }