@import url('https://fonts.googleapis.com/css2?family=Amaranth:ital@1&display=swap');
*{
    padding:0;
    margin: 0;
    font-family: "Amaranth", sans-serif;
}
body{
   
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url("pics_form/original.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.main{

    display:flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}
#imgLogo{
    margin-top: 50px;
    width: 200px;
    height: 80px;
    margin-bottom: none;
}
.register-main{
    width:  800px;
    height: 500px;
    display:flex;
    flex-direction: column;
    background:rgba(0,0,0,0.5);
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow:  2px 2px 15px rgba(0,0,0,0.3);
    margin-top: 5%;
    padding: 25px 30px;
    color:#fff;
    border-radius: 10px;
}
.form-Title{
    box-sizing: border-box;
    width: 112%;
    height: 70px;
    margin-top: -30px;
    margin-left: -45px;
    background:#FFD373;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
}
.form-Title h2{
    margin-top:12px;
    text-transform: uppercase;
    color:#071900;
}
form#register{
    text-decoration: none;
    padding:10px 20px;
    margin-top: 10px;
    font-size: 18px;
    padding-left: 150px;
    padding-right: 50px;
}

#name{
    width: 400px;
    border:1px solid #ddd;
    border-radius: 3px;
    outline: 0;
    padding:7px;
    background-color: #fff;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.3);
    font-size: 18px;
    margin-top: 10px;
}
.center{
    width: 400px;
    display:flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;

}
#select_course{
    width: 410px;
    border:1px solid #ddd;
    border-radius: 3px;
    outline: 0;
    padding:7px;
    background-color: #fff;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.3);
    font-size: 18px;
    margin-top: 10px; 
    color:#99002E;
}

#select_course option{
    background-color: #FFD373;
    color:#071900;
}

#submit{
    width: 200px;
    padding: 7px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
    background:crimson;
    color:#fff;
    cursor: pointer;
    border: 1px solid orangered;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.6s;
}
#submit:hover{
    background: #ED6F03;
}

























/* responsive*/
@media(min-width:575px) And (max-width:767px){
    .main, .register-main{
        width: 100%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .register-main{
        width: 100%;
        margin-bottom: 30px;
    }
	form#register{
    text-decoration: none;
    padding:5px 5px;
    margin-top: 10px;
    font-size: 12px;
    padding-left: auto;
    padding-right: auto;
	}

	#name{
		width: 95%;
		border:1px solid #ddd;
		border-radius: 3px;
		outline: 0;
		padding:7px;
		background-color: #fff;
		box-shadow: inset 1px 1px 5px rgba(0,0,0,0.3);
		font-size: 15px;
		margin-top: 10px;
	}
	.center{
		width: 400px;


	}
	#select_course{
		width: 97%;

		font-size: 15px;
		 
	}
	#select_course .default_value{
		color:gray;
	}
	#submit{
		width: 200px;
	}
	.form-Title{
		position:relative;
		width: 120%;
		margin-left:-30px;
}
}


