* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: 'Abel';
	src: url('../fonts/Abel-Regular.ttf');
}

body {
	font-family: 'Abel';
	height: 100vh;
}

:root {
	--white: #fff;
	--orange: rgb(255, 86, 56);
	--gray: rgb(175, 177, 190);
	--lightgray: rgb(57, 61, 82);
}

/*------------------ LOGIN PAGE ------------------*/
.login {
	margin: 100px 0 20px;
	animation: fadeIn 2.5s;
}

.login-form {
	width: 475px;
	height: 450px;
	margin: auto;
	display: flex;
	justify-content: center;
	border: 1px solid #000;
	background: #35394a;
	background: -moz-linear-gradient(45deg,  #35394a 0%, #1f222e 100%);
	background: -webkit-linear-gradient(45deg,  #35394a 0%,#1f222e 100%);
	background: -ms-linear-gradient(45deg,  #35394a 0%,#1f222e 100%);
	background: linear-gradient(45deg,  #35394a 0%,#1f222e 100%);
}

.login-header {
	text-align: center;
	margin: 30px;
	color: var(--gray);
}

.login-body {
	margin: 10px;
	width: 400px;
	display: flex;
	flex-direction: column;
	color: var(--gray);
}

.form-control {
	margin: 15px 0;
	padding: 10px;
	font-family: 'Abel';
	color: var(--gray);
	background: rgb(50, 54, 74);
	border-top: 2px solid var(--lightgray);
    border-bottom: 2px solid var(--lightgray);
    border-right: none;
    border-left: none;
}

.login-form button {
	margin: 20px 0;
	padding: 10px;
	background: transparent;
	font-family: 'Abel';
	font-size: 18px;
	text-transform: uppercase;
	border-radius: 50px;
	color: var(--orange);
	border: 2px solid var(--orange);
	outline: none;
}

.login-form button:hover {
	color: var(--white);
	background: var(--orange);
	transition: background-color, 1s;
	cursor: pointer;
}

.error-msg {
	text-align: center;
	font-size: 18px;
	color: red;
}

/*------------------ MAIN PAGE ------------------*/
.main-body {
	height: 100vh;
	background: -moz-linear-gradient(45deg,  #35394a 0%, #1f222e 100%);
	background: -webkit-linear-gradient(45deg,  #35394a 0%,#1f222e 100%);
	background: -ms-linear-gradient(45deg,  #35394a 0%,#1f222e 100%);
	background: linear-gradient(45deg,  #35394a 0%,#1f222e 100%);
}

.main-content {
	padding: 20px;
	display: flex;
	justify-content: center;
}

.signout {
	margin: 50px 0 10px;
	display: flex;
	justify-content: center;
}

.signout a {
	padding: 5px 20px;
	border-radius: 50px;
	border: 2px solid var(--orange);
	text-decoration: none;
	color: var(--orange);
}

.signout a:hover {
	color: var(--white);
	background: var(--orange);
	transition: background-color, 1s;
	cursor: pointer;
}

.content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 20px;
}

.content-video {
	background-color: var(--lightgray);
}

.details {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 18px;
	color: var(--gray);
	margin: 15px 0;
}

.title {
	margin: 0 10px;
}

.download {
	position: relative;
	display: inline-block;
}

.drop-btn {
	margin: 0 10px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
}

.dot {
	background-color: var(--gray);
	margin: 2px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.drop-menu {
	display: none;
	position: absolute;
	right: 0;
	margin-top: 0.5px;
	min-width: 140px;
	text-align: center;
	background-color: var(--white);
	box-shadow: 0px 8px 16px 0px var(--lightgray);
	z-index: 1;
}

.drop-menu a {
	font-size: 14px;
	padding: 5px 20px;
	text-decoration: none;
	color: var(--lightgray);
	display: block;
}

.drop-menu a:hover {
	color: var(--lightgray);
	background-color: var(--gray);
}

.download:hover .drop-menu {
	display: block;
}

footer {
	display: flex;
	justify-content: center;
}

.main-footer {
	color: var(--gray);
}

/*------------------ ANIMATION ------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*------------------ MEDIA SCREEN ------------------*/
@media only screen and (max-width: 1250px) {
	.content-video {
		width: 435px;
		height: 310px;
	}
}

@media only screen and (max-width: 768px) {
	.main-content {
		flex-direction: column;
	}

	.content-video {
		width: auto;
		height: 280px;
	}
}