css
* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
}  

body {  
    font-family: Arial, sans-serif;  
    height: 100vh;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    overflow: hidden;  
    position: relative;  
}  

.background {  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    background: url('../imagenprincipalcontrolsystemwebs/Imagendeluniverso.png') no-repeat center center fixed;   
    background-size: cover;  
    z-index: -1;  
    filter: brightness(0.7); /* Ajusta el brillo si es necesario */  
}  

.login-container {  
    background: rgba(0, 0, 0, 0.7);  
    padding: 20px;  
    border-radius: 10px;  
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);  
    text-align: center;  
}  

.login-form {  
    display: flex;  
    flex-direction: column;  
}

.login-container h2 {  
    color: white; /* Cambia a blanco o a otro color que desees */  
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para mejorar la legibilidad */  
}  
.login-container h4 {
    color: white; /* Cambia a blanco o a otro color que desees */  
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para mejorar la legibilidad */
}
.login-form label {  
    margin-bottom: 5px;  
    color: white;  
}  

.login-form input {  
    padding: 10px;  
    margin-bottom: 15px;  
    border: none;  
    border-radius: 5px;  
}  

.login-form button {  
    padding: 10px;  
    border: none;  
    border-radius: 5px;  
    background-color: #4CAF50;  
    color: white;  
    cursor: pointer;  
}  

.login-form button:hover {  
    background-color: #45a049;  
}