/* login.css - ügyfél bejelentkezési oldal stílus */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 24px;
    font-size: 24px;
    font-style: italic;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
	height: 44px;
    box-sizing: border-box;
}

.login-button {
    background-color: #007BFF;
    color: white;
    font-weight: 700;
    font-style: italic;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.1s ease-in-out;
}

.login-button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.forgot_pwd,
.regisztracio-link {
    margin-top: 15px;
}

.forgot_pwd a,
.regisztracio-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}

.forgot_pwd a:hover,
.regisztracio-link a:hover {
    text-decoration: underline;
}

.error {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}
