@import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@300;400;500;600;700&display=swap');


:root {
    --color-primary: #ffffff;
    --color-text: #11d9ff;
    --color-white: #fff;
    --color-light: #90dcd2;
    --color-dark: #ffffff ;
    --color-black: #ffffff;
    --color-body-bg: #32323d ;
    --transition: all 300ms ease;

    --fuente-principal: Roboto, sans-serif;
    --fuente-secundaria: Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    border: 0;
    text-decoration: none;
}

body {
    font-family: var(--fuente-principal);
    background: linear-gradient(120deg, var(--color-primary), rgb(0, 0, 0));
    color: var(--color-dark);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(120deg, #01404b, rgb(0, 0, 0));
    /* background-image: url('fondito2.png'); Aquí va la ruta a tu imagen */
    background-size: cover; /* Ajusta la imagen para que cubra todo el contenedor */
    background-position: center; /* Centra la imagen */
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

h1 {
    color: var(--color-black);
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

a, a:active, a:visited {
    color: var(--color-text);
    font-weight: 500;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(90deg, #5553c0, #8639e0);
    color: white;
}


.btn:hover {
    background: linear-gradient(90deg, #a19de3, #714aa7);
}



.btn img {
    width: 1.2rem;
}

/* SIGN IN */
.sign-in {
    width: 60rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
}

.sign-in__details {
    padding: 2rem 4rem;
}

.sign-in__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.form__control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

input:not([type="checkbox"]) {
    width: 100%;
    /* border: 1px solid var(--color-body-bg); */
    padding: 0.7rem;
    border-radius: 0.5rem;
}

input::placeholder {
    color: var(--color-body-bg);
}

label {
    font-weight: 500;
    color: var(--color-black);
}

.sign-in__extras {
    display: flex;
    justify-content: space-between;
}

.sign-in__extras div {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

button:last-child {
    margin-top: -0.5rem;
}

.next__page {
    margin-top: 1rem;
    text-align: center;
    display: block;
}

.sign-in__logo {
    display: grid;
    place-content: center;
    /* background: linear-gradient(120deg,#131343 ,#000000); */
    height: 100%;
}

.sign-in__logo div {
    width: 22rem;
}


@media screen and (max-width: 600px) {
    body{
      background-image: url('fondito3.png');
    }


    body {
        display: block;

    }

    h1 {
        font-size: 1.5rem;
    }

    .sign-in {
        grid-template-columns: 1fr;
        width: 100vw;
        overflow: visible;
    }

    .sign-in__details {
        grid-row: 2/3;
        padding: 2rem 1.5rem;
    }

    .sign-in__form {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .sign-in__extras {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .sign-in__logo {
        padding: 3.5rem 0;
    }


}


.error{
    color: #ff0000;
  }

.error2{
color: #ff0000;
}

.error1{
    color: #ff0000;
    }

.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags@2x.png");
    }
}
    
    /* ================= VIDEO BACKGROUND ================= */
/* ================= VIDEO BACKGROUND ================= */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: #000;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.video-bg video{
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px){
  .video-bg video{
    object-position: center top; /* o center 30% */
  }
}



