
        body {
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #000607, #014750);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #fff;
            flex-direction: column;
        }

        .container {
            background: #2c2f48;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            text-align: center;
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: center; /* Centraliza na horizontal */
            justify-content: center; /* Centraliza na vertical */
        }

        h2 {
            margin-bottom: 20px;
            font-size: 24px;
        }

        p {
            font-size: 14px;
            margin-bottom: 30px;
            color: #d1d1d1;
        }

        input[type="text"] {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 16px;
            outline: none;
            align-items: center; /* Centraliza na horizontal */
        }

        button {
            width: 100%;
            padding: 15px;
            background: #060914;
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s ease;
            align-items: center; /* Centraliza na horizontal */
            align-self: center;
        }

        button:hover {
            background: #055569;
        }

        .resend {
            margin-top: 15px;
            font-size: 13px;
        }

        .resend a {
            color: #056881;
            text-decoration: none;
            font-weight: bold;
        }

        .resend a:hover {
            text-decoration: underline;
        }

        /* Animation */
        .container {
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(290px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .wrap-input.alert-validate::after {
            content: attr(data-validate);
            position: relative;
            background-color: #ffffff00;
            padding: 5px;
            color: red;
            top: 100%;
            left: 0;
            font-size: 12px;
            z-index: 100;
        }