        *{
    		margin: 0;
    		padding: 0;
    	}

    	body {
    		width: 100%;
    		display: grid;
    		align-items: center;
    		justify-content: center;
    		font-size: 16px;
    		font-family: 'Raleway', sans-serif;
    	   }

    	.main {
    		display: grid;
    		align-items: center;
    		justify-content: center;
    		width: 90%;
    		height: auto;
           
    	    }

    	.login {
    		margin-top:150px;
    		display: grid;
    		align-items: center;
    		justify-items: center;
    		width: 100%;
    		

    	    }

    	.form {

    		display: grid;
			border:1px solid grey;
			padding: 35px 15px;
			box-shadow: ;
			width: 100%;


    		
    		} 
    		.inputs{
    			display: grid;
    			justify-content: center;
    			align-items: center;
    		} 

    	.input_txt, .input_pass, select{
    		border: none;
    		box-shadow: ;
    		width: 290px;
    		height: 32px;
    		border-bottom: 2px solid #2c3e50;
    		outline:none;

    	   }
    	.login_btn{
    		color: white;
    		background-color: #2c3e50;
    		border: none;
    		padding:8px 120px;
    		border-radius: 20px;
    		letter-spacing: 1px;
    		font-size: 16px;
    	}

    	.login_btn:hover{
    		color: white;
    		background-color: teal;
    		
    		
    	}
    	label{
    		color: black;
    	}
    	