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

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
}

.bg_video{
	position: fixed; 
	right: 0; 
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	width: auto; 
	height: auto; 
	z-index: -1000;
	background-size: cover; 
}

.container {
    padding: 20px;
    max-width: 1440px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.row {
    max-width: 420px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
}

.content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img {
    max-width: 420px;
    width: 80%;
}
.alert {
    width: 100%;
    height: 50px;
    background-color: red;
    color: #FFF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
input {
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #E1E1E1;
    padding-left: 10px;
    width: 97%;
    outline: none;
}
input:focus {
    border-color: #A6EF02;
}
.btn {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    margin-top: 10px;
    color: #FFF;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

.btn-admin {
    background-color: #5cb85c;
}
.btn-admin:hover {
    background-color: #499D44;
}

.albicod {
    text-decoration: none;
    font-size: 14px;
    color: #000000;
}

.developer {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    color: #000000;
}
.developer .link {
    text-decoration: none;
    margin-left: 5px;
    color: #000000;
    text-transform: uppercase;
    transition: all ease .3s;
}
.developer .link:hover {
    color: #333030;
}

form {
    width: 100%;
}

form .input-group-password {
    position: relative;
}

form .input-group-password svg {
    position: absolute;
    width: 20px;
    top: calc(50% - 10px);
    right: 10px;
    cursor: pointer;
}
