            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Trebuchet MS', sans-serif;
            }

            body {
                background-color: #004e4c;
                min-height: 100vh;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 20px;
            }

            .login-container {
                background: white;
                border-radius: 16px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                padding: 40px;
                width: 100%;
                max-width: 420px;
                animation: slideIn 0.5s ease-out;
            }

            @keyframes slideIn {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .login-header {
                text-align: center;
                margin-bottom: 35px;
            }

            .login-header h1 {
                color: #00995D;
                font-size: 28px;
                margin-bottom: 8px;
                font-weight: bold;
            }

            .login-header p {
                color: #666;
                font-size: 14px;
            }

            .form-group {
                margin-bottom: 24px;
            }

            .form-group label {
                display: block;
                color: #333;
                font-weight: 600;
                margin-bottom: 8px;
                font-size: 14px;
            }

            .form-group input {
                width: 100%;
                padding: 14px 16px;
                border: 2px solid #e0e0e0;
                border-radius: 8px;
                font-size: 16px;
                transition: all 0.3s ease;
                background-color: #f8f9fa;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            .form-group input:focus {
                outline: none;
                border-color: #00995D;
                background-color: white;
                box-shadow: 0 0 0 3px rgba(0, 153, 93, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
            }

            .form-group input::placeholder {
                color: #aaa;
            }

            .btn-login {
                width: 100%;
                padding: 16px;
                background-color: #B1D34B;
                color: #333;
                border: none;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
            }

            .btn-login:hover {
                background-color: #9fbd3f;
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(177, 211, 75, 0.4);
            }

            .btn-login:active {
                transform: translateY(0);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            }

            .btn-secondary {
                width: 100%;
                padding: 16px;
                background-color: #C4CBCF;
                color: #333;
                border: none;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
            }

            .btn-secondary:hover {
                background-color: #b0b7bb;
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(196, 203, 207, 0.4);
            }

            .btn-secondary:active {
                transform: translateY(0);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            }

            /* Responsividade Mobile */
            @media (max-width: 576px) {
                body {
                    padding: 15px;
                }

                .login-container {
                    padding: 30px 20px;
                    max-width: 100%;
                }

                .login-header h1 {
                    font-size: 24px;
                }

                .login-header p {
                    font-size: 13px;
                }

                .form-group input {
                    padding: 12px 14px;
                    font-size: 15px;
                }

                .btn-login,
                .btn-secondary {
                    padding: 14px;
                    font-size: 15px;
                }
            }

            @media (max-width: 360px) {
                .login-container {
                    padding: 25px 15px;
                }

                .login-header h1 {
                    font-size: 22px;
                }

                .form-group input {
                    padding: 10px 12px;
                }

                .btn-login,
                .btn-secondary {
                    padding: 12px;
                    font-size: 14px;
                }
            }

            /* Landscape mobile */
            @media (max-height: 600px) and (orientation: landscape) {
                body {
                    padding: 10px;
                }

                .login-container {
                    padding: 20px;
                }

                .login-header {
                    margin-bottom: 20px;
                }

                .login-header h1 {
                    font-size: 20px;
                    margin-bottom: 5px;
                }

                .form-group {
                    margin-bottom: 15px;
                }
            }

            .logo {
                width: 240;
                height: auto;
                margin: 0 auto 20px;
                display: block;
            }

            /* Responsividade da logo */
            @media (max-width: 576px) {
                .logo {
                    width: 200;
                    margin-bottom: 15px;
                }
            }

            @media (max-width: 360px) {
                .logo {
                    width: 180;
                    margin-bottom: 10px;
                }
            }

            @media (max-height: 600px) and (orientation: landscape) {
                .logo {
                    width: 140px;
                    margin-bottom: 10px;
                }
            }