/* Estilos principales para ITSC Netspain Solutions - En Desarrollo */

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/background_2.jpg') no-repeat center center/cover;
    /* filter: blur(5px) brightness(0.6); */
    z-index: -1;
}

.container {
    max-width: 100%;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.1); 
    border-radius: 10px; */
    backdrop-filter: blur(15px); 
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-weight: 300;
    font-size: 1.4em;
    line-height: 1.5em;
}
