@import url(variable.css);
* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:rgba(0, 0, 0, 0.288) ;
}

body {
    overflow-x: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.login-container{
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
}
.login-container img {
    background-color: transparent;
    width: 40%;
    width: 40%;
    display: flex;
}
.login-container form{
    display: flex;
    flex-direction: column;
    background: transparent;
    background: linear-gradient(135deg, #0a0a0a, #0f0f0f, #121212);
    border-radius: 8px;
    text-align: center;
    align-items: center;
    padding: 20px 25px;
    box-shadow: 0 5px 10px rgba(71, 3, 6, 0.7);
}
form .tittle{
    background-color: transparent;
    font-family: "Formula1-bold";
    color: white;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: -10%;
}
form label {
    margin-bottom: 25px;
    background-color: transparent;
}

form label input{
    margin-left: 10px;
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    border-bottom: solid 1px white;
    padding: 0 5px;
    font-size: 18px;
}

form label input::placeholder {
    color: #38383F;
    font-size: small;
    padding: 5px;
}

form .link{
    background-color: transparent;
    color: white;
    margin-bottom: 15px;
    text-decoration: none;
}
form button {
    color: white;
    border-color: #fff;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0a0a0a, #0f0f0f, #121212);
}