@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 {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

img {
    max-width: 420px;
    width: 80%;
}
.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;
}

.btn-admin {
    background-color: #E68F38;
}
.btn-admin:hover {
    background-color: #F59938;
}

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

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