*{
	padding: 0; 
	margin:0; 
	border:0; 
	font-family: ;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */	
	
}

body {
    font-weight: normal;
    font-family: DINPRO1;
    background-image: url("images/szurke.jpg");
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center ;
	background-attachment: fixed;
}

div#felso-sav {
    background-color: rgb(150, 0, 30);  /* Bordó */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px;
    z-index: 1;
    vertical-align: middle;
    
}

.gomb {
    background-color: transparent;
    border: none;
    float: left;
    color: white;
    font-family: DINPROmedium;
    font-size: 20px;
    text-decoration: none;
}

.gomb::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width .3s;
}

.gomb:hover::after {
    width: 100%;
    transition: width .3s;
}


form {
   width: 320px;
    margin: 50px auto;
    padding: 80px;
    font-weight: normal;
    font-family: DINPRO1;
    
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;


}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: normal;
    font-family: DINPRO1;

}

#bejelentkezes{
    font-weight: normal;
    font-family: DINPRO1;
}

#elfelejtett{
    text-decoration: none;
    color: rgb(150, 0, 30);
}

#elfelejtett:hover{
    color: gray;
    transition: background-color 0.3s;
}

input[type="text"], input[type="password"] {
    width: 87%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgb(150, 0, 30);
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #777;
    outline: none;
    box-shadow: 0 0 5px rgba(119, 119, 119, 0.5);
}

input[type="submit"] {
    width: 90%;
    padding: 10px 15px;
    margin: 0 auto;
    position: relative; 
    background-color: rgb(150, 0, 30);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
  -webkit-text-fill-color: rgb(150, 0, 30);
  -webkit-box-shadow: 0 0 0px 40rem #ffff inset;
}


@media only screen and (max-width: 480px){
	form{
		position:relative;
		margin-top:20%;
		width:70%;
		padding: 10%;
 	}
}

