 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #010000;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
            flex-direction: column;
        }

        header {
            width: 100%;
            height: 80px;
            background-color: #010000;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10;
            padding: 0 20px;
        }

        .tech-logo {
		margin-left:70px;
            width: 150px;
            height: 150px;
            background-image: url('logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .tech-login-box {
            background-color: #010000;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 350px;
            margin-top: 65px;
            position: relative;
        }

        .tech-login-box h2 {
            margin-bottom: 30px;
            font-size: 28px;
            color: #333;
            font-weight: 600;
        }

        .input-container {
            position: relative;
            margin-top: 30px;
            width: 100%;
        }

        .input-container input {
            width: 100%;
            padding: 18px 12px 12px 12px;
            font-size: 18px;
            border: 2px solid #fff;
            border-radius: 4px;
            outline: none;
            background-color: transparent;
            color: white;
            transition: border-color 0.3s ease, border-width 0.3s ease;
            box-sizing: border-box;
        }

        .input-container input:focus {
            border-color: white;
            border-width: 3px;
        }

        .input-container label {
            position: absolute;
            top: 20%;
            left: 16px;
            transform: translateY(20%);
            font-size: 18px;
            color: #fff;
            pointer-events: none;
            transition: all 0.2s ease;
            z-index: 1;
        }

        .input-container input:focus + label,
        .input-container input:not(:placeholder-shown) + label {
            top: 2px;
            font-size: 12px;
            color: #aaa;
        }

        .error-message {
            display: none;
            color: red;
            font-size: 12px;
            margin-top: 5px;
        }

       .tech-input-group input[type="submit"] {
    background-color: #f9081a;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
    width: 100%; /* Ajuste para 80% da largura */
    margin: 0 auto; /* Centraliza o botão */
}

        .tech-input-group input[type="submit"]:hover {
            background-color: #fc4d45;
        }

        .tech-footer-text {
            margin-top: 10px;
            color: white;
            font-size: 14px;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        .checkbox-container input {
            margin-right: 10px;
        }

        .language-select {
            width: 100%;
            padding: 8px;
            border-radius: 5px;
            margin-top: 20px;
            background-color: #333;
            color: white;
            border: 1px solid #555;
        }

        footer {
            width: 30%;
            background-color: #333;
            padding: 20px;
            color: white;
            text-align: center;
            font-size: 14px;
            margin-top: 30px;
        }

    
        @media screen and (max-width: 768px) {
            .tech-login-box {
                width: 100%;
                margin-top: 120px;
            }

            .tech-logo {
                width: 120px;
                height: 120px;
            }

            .input-container input,
            .tech-input-group input[type="submit"],
            .language-select {
                font-size: 16px;
                padding: 12px;
            }

            footer {
                padding: 15px;
            }

            .tech-footer-text {
                font-size: 12px;
            }

            .checkbox-container label {
                font-size: 14px;
            }

            .checkbox-container {
                margin-top: 10px;
            }

            .tech-login-box h2 {
                font-size: 24px;
            }
        }

       @media screen and (max-width: 480px) {
       .tech-login-box {
                width: 100%;
                margin-top: 120px;
				padding: 30px;
            }
	  footer {
            width: 100%;
            background-color: #333;
            padding: 20px;
            color: white;
            text-align: center;
            font-size: 14px;
            margin-top: 30px;
        }

    .tech-logo {
        width: 100px;
        height: 100px;
		margin-left:30px;
    }

    .input-container input,
    .tech-input-group input[type="submit"] {
        font-size: 20px; 
        padding: 20px;  
    }

    .checkbox-container {
        flex-direction: column;
        align-items: flex-start;
    }

    footer {
        padding: 10px;
    }

    .tech-footer-text {
        font-size: 12px; 
    }

    .language-select {
        font-size: 16px; 
    }
}