body.start {    
	background-color: #f7f8fb;
	height: 100vh;
	position: relative;
	overflow: hidden;
} 

.home {    	
    position: relative;
    overflow: hidden;
}

img.logo2 {
    max-width: 300px;
	-webkit-transform:rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

img.logo3 {
	position: absolute;
	right: 30px;
	top: 10px;
	width: 100px;
	z-index: 10;
	-webkit-transform:rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.rounded-bar {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 90px;
    padding: 10px 15px;
    width: 100%;
}

header h4 {
	font-weight: 700;
}
.pageTitle {
	margin-top: 25px;
}

.pageTitle h2 {
	letter-spacing: 0.1em;
    font-weight: 600;
    text-shadow: 2px 2px 8px #000000b3;
}


.pageTitle h4 {
	letter-spacing: 0.1em;    
}

svg.yellow-square {
	position: absolute;
	right: 0;
	height: 280%;
	top: -50%;
	bottom: 0;
}

.karta {			
	width: 100%;   
	height: 400px;         
	text-align: center;
	transition: transform 0.3s, background-color 0.3s; /* Dodaj przejście zmiany tła i transformacji */
}

.karta h2 {
	color: crimson;
	margin-bottom: 40px;
}

.menu {			
	margin-bottom: 20px;
	margin-right: 100px;
	width: 280px;
	padding: 40px 20px;
	display: block;
}

.menu button {
	margin-bottom: 10px;
}

.form {
	padding: 40px 20px;
	width: 320px;	
	display: flex;	
	flex-direction: column;		
	opacity: 0;
	transform: rotateY(90deg); /* Obrót na początku do 90 stopni */
	transition: opacity 0.5s, transform 0.5s, background-color 0.3s; /* Animacja zmiany opacity, transformacji i tła */
}


#loginFail {
    display: none;
    position: absolute;
    left: 270px;
    margin-top: 100px;
}

#loginFail.show {
	display: block;
}




#login-form  option {
	font-size: 1rem;
}
.form.show {
	opacity: 1;
	transform: rotateY(0deg); /* Obrót na 0 stopni, aby pokazać formularz */
}

.form label {
	margin-bottom: 5px;
	opacity: 1;
	color: #fff;
	text-align: left;
}

.form input {
	padding: 8px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	opacity: 1;
}

.form button {	
	margin-top: 40px; 
	width: 50%;
	margin-left:auto ;
	margin-right:auto ;

}

.stopka {
	position: absolute;
	bottom: 20px;	
	width: 100%;
	padding-right: 50px;
	text-align: right;
	font-weight: 100;
	color: #f7f8fb !important;
}


header .logo img{
    width: 200px;
    height: 100px; 
}

@media screen and (min-width: 1621px){
	svg.yellow-square {		
		height: 350%;
	}
	
}


@media screen and (max-width: 1620px){
	svg.yellow-square {		
		height: 280%;
	}
	
}

@media screen and (max-width: 1366px){
	svg.yellow-square {		
		height: 200%;
	}
	
}

@media screen and (max-width: 650px){
	.menu {					
		width: 50%;		
		margin-right: 0;	
		padding: 40px 10px;		
	}
	.form {
		padding: 40px 10px;
		width: 100%;		
	}
	
	header .logo img{
		width: 100px;
		height: 65px; 
	}
	header h4 {
		font-size: 1.1rem;
		color: black;
	}
	img.logo3 {		
		right: 12px;
		top: 88px;		
	}
	.karta h2 {		
		margin-bottom: 0px;
		text-align: left;
	}
}