
        /* Estilo básico do corpo */
        body {
            font-family: Arial, Helvetica, sans-serif;
            background-image: linear-gradient(45deg, hsl(24, 100%, 50%), hsl(24, 77%, 75%));
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }
        
        /* Estilo do container de login */
        .telalogin {
            background-color: #000;
            padding: 40px 60px;
            border-radius: 15px;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        /* Estilo do título */
        .telalogin h1 {
            margin-bottom: 24px;
        }

        /* Estilo dos inputs */
        .telalogin input {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 15px;
            background-color: #333;
            color: white;
        }
        
        /* Efeito ao focar nos inputs */
        .telalogin input:focus {
            border-color: hsl(24, 100%, 50%);
            outline: none;
        }

        /* Estilo do botão */
        .telalogin button {
            background-color: hsl(24, 100%, 50%);
            border: none;
            padding: 15px;
            width: 100%;
            border-radius: 10px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        /* Efeito hover no botão */
        .telalogin button:hover {
            background-color: hsl(24, 77%, 75%);
        }

        /* Mensagem de erro */
        .error-message {
            color: #ff4d4d;
            font-size: 14px;
            margin-top: 10px;
            display: none; /* Oculto por padrão */
        }
