/* The Modal (background) */
.modal {
 display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    text-align: center;
    padding:200px;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}


/* Modal Content */
.modal-content {
      background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40% !important;
    text-align: center;
    display: flex;
    border-radius: 20px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
 .modal-content input{
	width:300px;
	background:none;
	border:1px solid aqua;
	border-radius:40px;
	margin:10px;
	padding:5px;
	color:black;
}
 .modal-content input:hover{
	border:1px solid #009bcb;
	border-radius:0;
	transition: all 0.5s ease-in;
}
 .modal-content button{
	width:300px;
	background:none;
	border:1px solid aqua;
	margin:10px;
	padding:5px;
	cursor:pointer;
	
}
 .modal-content button:hover{
	background :#009bcb;
	border-radius:40px;
	transition: all .5s ease-in;
}