.abox {
      border:1px solid grey;
      border-radius:10px 10px 10px 10px;
      padding:40px 20px 20px 40px;
      margin-top:20px;
      font-weight:bold;
      }
.abox input {
     width:52%; 
     border:1px solid grey;
     border-radius:0px 10px 10px 0px;
     background-color:#f1f1f1;
     padding:8px;
}
.abox p {
	text-align:right;
	padding:0px 30px 0px 0px;
}
.abox p:nth-child(3) {
	text-align:center;
	color:red;
	font-weight:bold;
	padding:0px;
}
.abox p:nth-child(4) {
	text-align:center;
	padding:0px;
}
.abox button:disabled {
	border-radius:8px;
	color:grey;
	background-color:#f1f1f1;
	padding:8px;
}
.abox button:enabled {
	border-radius:8px;
	color:white;
	background-color:rgba(0, 0, 0, 0.7);
	padding:8px;
}
.abox button:enabled:hover {
	color:#00FF21;
}
@media screen and (max-width:980px) {
	.abox {
		width:100%;
	}
	.abox button:enabled {
		cursor:pointer;
	}
	.abox button:enabled:hover {
		cursor:pointer;
	}
}
