/* Pamatstili ķermenim un izvietojumam */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

/* Fona video stils */
video#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Konteinera un lapas stils */
.container, .homepage {
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

/* Virsraksta stils */
h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

/* Teksta un ievades lauku stils */
label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

input::placeholder {
    color: #FFFFFF;
}

/* Pogas stils */
button {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    color: #FFFFFF;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Papildteksta un saišu stils */
.text {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.text a {
    color: #FFFFFF;
    text-decoration: underline;
}

.text a:hover {
    color: #ccc;
}
