@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');

:root {
    --light: #f6f6f9;
    --dark: #212529;
    --violet: #796fa1;
    --amethyst: #8670c2;
    --royal-purple: #6e54b5;
    --english-violet: #3b364c;
    --dark-purple: #2b2638;
    --blue: #3066be;
    --space-cadet: #172b4d;
    --oxford-blue: #121f3d;
    --tyffany-blue: #97ede3;
    --green: #95ca3e;
    --gray: #565e64;
    --orange: #fb8500;
    --yellow: #fcbf49;
    --gold: #ffbf00;
    --bright-pink: #ff4d6d;
}

body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

::-ms-reveal {
    display: none;
}

/* Estilos generales: selección */
::selection {
    background: var(--blue);
    color: var(--light);
}

/* Estilos generales: input  */
input {
    font-family: "Nunito", "FontAwesome" !important;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: var(--english-violet) !important;
    color: var(--light) !important;
    transition: 0.3s ease !important;
}

input:focus {
    border-color: var(--violet) !important;
    outline: 0;
    box-shadow: 0 0 0 2px var(--violet) !important;
    transform: scale(1.03) !important;
}

input::placeholder {
    color: rgba(235, 235, 235, 0.3) !important;
    letter-spacing: 0.75px;
    text-transform: none;
}

/* Estilos generales: botón */
.btn {
    background-color: var(--royal-purple);
    color: var(--light);
    transition: 0.3s ease;
}

.btn:hover {
    background-color: var(--amethyst);
    transform: scale(1.1);
}

a {
    transition: 0.3s ease;
}

a:hover {
    color: var(--bright-pink) !important;
    letter-spacing: 1px;
}

/* Estilos generales: fondo */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 84, 181, 0.3);
    z-index: -1;
}

.container {
    height: 100%;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.5));
}

.form-container {
    background-color: var(--dark-purple);
    color: var(--light);
    max-width: 800px;
    width: 100%;
}

.image-section {
    flex: 1;
    background-image: url('img/02.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.form-section {
    flex: 1;
}