/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;


}

html {
    overflow-y: scroll;
}

h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #666666;
}

/* Form Container */
.form-container {
    background-color: #fff;
    padding: 30px 40px 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
	color: #666666;
}

/* Input Fields */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #666666;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
	color: #666666;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button */
button[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Error Message */
p {
    text-align: center;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
}

p[style*="color: red;"] {
    font-weight: bold;
}
