@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&family=Roboto:wght@100&display=swap');

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*-----------Card Central (Fundo Formulario)----------*/
.login-container {
    background-color: rgba(255, 255, 255, 0.8); /* Fundo semi-transparente */
    padding: 40px;
    border-radius: 25px;
    width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ff66b2;
    position: relative;
    z-index: 1;
}

/*-----------Coluna Logo-----------*/
.video-container {
    width: 90%;
    max-width: 700px;
    border-radius: 25px;
    overflow: hidden;
}

video {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

h2 {
    font-family: "Quicksand", sans-serif;
    color: #ff66b2;
    background: linear-gradient(to right, #F6B2CD, #DC539B, #764D9A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 27px;
}

form {
    width: 100%;
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
}

label {
    width: 100%;
    color: #ff66b2;
    font-weight: bold;
    margin-bottom: 5px;
    display: none; /* Hidden as the placeholders are used instead */
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 5px;
    margin: 7px;
    padding-left: 10px;
    border: 1px solid #ff66b2;
    border-radius: 25px;
    box-sizing: border-box;
    font-size: 15px;
    color: #ff66b2;
    background-color: #fff;
    text-align: center;
}

input::placeholder {
    color: #ff66b2;
    opacity: 0.7;
}

button {
    background-color: #DC539B;
    width: 100px;
    padding: 5px;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
    font-family: "Quicksand", sans-serif;
}

button:hover {
    color: #DC539B;
    border: 1px solid #DC539B;
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .login-container {
        width: 350px;
        height: 500px;
        z-index: 1;
    }
}