@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&family=Roboto+Condensed:wght@300;400;700&display=swap');

*, html {
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
    box-sizing: border-box;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	opacity: 0.8;
}

.bg-img img {
	object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	opacity: 0.7;
}


body {
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-login {
    position: relative;
    height: 450px;
    width: 360px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.5);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#logo {
    font-size: 7rem;
    color: #363636;
    margin-bottom: 20px;
    transition: 0.5s;
}

.form-control {
	/* border: 5px solid red; */
    position: relative;
    height: 50px;
    width: 100%;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.form-control span::before {
    content: attr(data-placeholder);
    position: absolute;
    /* color: #bdc3c7; */
	color: #808080;
    top: 27.5%;
    left: 30%;
    transition: 0.5s;
    opacity: 1;
}

#logo-input {
    margin: 0 20px;
    padding-right: 20px;
    font-size: 1rem;
    border-right: 2px solid #808080;
    color: #808080;
    /* border-right: 2px solid lightgray;
    color: lightgray; */
}

.input {
	height: 50px;
    width: 65%;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    z-index: 1;
    color: #e62222;
}

.focus + span::before{
    opacity: 0;
}

.change-color {
    color: #e67e22 !important;
}

a {
    /* text-decoration: none; */
    color: #ffc846;
}

p {
    color: white;
}

.btn-submit {
    margin: 20px 0;
    padding: 15px 0;
    width: 50%;
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(120deg,#ff6d6d,#e62222,#e62222,#ff6d6d);
    background-size: 200%;
    font-size: 1rem;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

.btn-submit:hover {
    background-position: right;
}