﻿/* Yleiset asetukset */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	
	background-image: url("bg5.jpg"); /* The image used */
	background-position: center;   /*Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
	
	
	
}

/* Lomakkeen container */
.form-container {
    background-color: white;
	background-color: #ffffffde;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    margin: auto;
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
	    gap: 10px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="submit"] {
    padding: 10px;
	padding-top: 25px;
    padding-bottom: 25px;
    border: 2px solid #ddd;
    border-radius: 5px;
    wwidth: 100%;
	wwidth: calc(100% - 22px);
}

input[type="submit"] {
    background-color: #0056b3;
    color: white;
    cursor: pointer;
    border: none;
}

input[type="submit"]:hover {
    background-color: #004494;
}

.error {
    color: #d32f2f;
    background-color: #fce4e4;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f2b0b0;
    text-align: center;
}



/* Virheviestien tyylit */
.error {
    color: #d32f2f;
    background-color: #fce4e4;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f2b0b0;
    text-align: center;
}

.success {
    color: #388e3c;
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #b2fab4;
    text-align: center;
}



 .error {
            color: red;
            margin: 10px 0;
            text-align: center;
        }
        .register-link {
            display: block;
            text-align: center;
            margin-top: 20px;
        }
		
		/* Mobiili zoomaus */
		@media (max-width: 600px) {
            .form-container {
                padding: 20px;
				margin: 10px;
            }

            input[type="text"],
            input[type="password"],
            input[type="submit"] {
                padding: 15px;
                width: calc(100% - 32px);
            }
        }
		
		