@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

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

body {
	font-family: 'Arial', sans-serif;
	-webkit-font-smoothing: antialiased;
	background: #000;
	color: #999;
  background: url('amazflix-signup-bg.jpg') no-repeat center center/cover;
}

ul {
	list-style: none;
}

h1,
h2,
h3,
h4 {
	color: #fff;
}

a {
	color: #fff;
	text-decoration: none;
}

p {
	margin: 0.5rem 0;
}

img {
	width: 100%;
}

.container{
  width: 100%;
	height: 100vh;
	position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:25px;
  min-height: 100vh;
  
  background: rgba(0, 0, 0, 0.65);
  box-shadow: inset 30px 10px 150px #000000;
  
}

.container form{
  
  margin-top: 62px;
  padding:20px;
  width:600px;
	position: absolute;
	background: rgba(0, 0, 0, 0.65);
  
	
}

.container form .row{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
}

.container form .row .col{
  flex:1 1 250px;
}

.container form .row .col .title{
  font-size: 20px;
  color:#333;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.container form .row .col .inputBox{
  margin:15px 0;
}

.container form .row .col .inputBox span{
  margin-bottom: 10px;
  display: block;
}

.container form .row .col .inputBox input{
  width: 100%;
  border:none;
  padding:10px 15px;
  font-size: 15px;
  text-transform: none;
  border-radius: 5px;
}

.container form .row .col .inputBox input:focus{
  border:none;
  border-radius: 5px;
}

.container form .row .col .flex{
  display: flex;
  gap:15px;
  border-radius: 5px;
}

.container form .row .col .flex .inputBox{
  margin-top: 5px;
  border-radius: 5px;
}
.container form .row .col .inputBox img{
  height: 34px;
  margin-top: 5px;
  filter: drop-shadow(0 0 1px #000);
  border-radius: 5px;
  
}

.container form .submit-btn{
  width: 100%;
  padding:12px;
  background: red;
  color:#fff;
  margin-top: 5px;
  cursor: pointer;
  font-size: inherit;
	font-weight: bold;
	border: none;
	outline: none;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}


.logo {
	position: relative;
	z-index: 2;
}

.logo img {
	width: 170px;
	position: absolute;
	top: 20px;
	left: 40px;
}

.showcase-content {
	position: relative;
	z-index: 2;
	width: 450px;
	height: 650px;
	background: rgb(0, 0, 0, 0.65);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	padding: 60px 65px;
}

.formm h1 {
	margin-bottom: 20px;
}

.formm {
	width: 100%;
	margin-bottom: 40px;
}



.btn-primary {
	width: 100%;
	height: 50px;
	border-radius: 5px;
	background: red;
	color: #fff;
	font-size: inherit;
	font-weight: bold;
	border: none;
	cursor: pointer;
	outline: none;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

input[type=email] {
	background: #343434;
}

input[type=name] {
	background: #343434;
}
input[type=number] {
	background: #343434;
}
input[type=text] {
	background: #343434;
}