
/* Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.icon {
    width: 32px; /* Adjust the width to your desired icon size */
    height: auto; /* Maintain aspect ratio */
    text-align: center; /* Center the content horizontally */
}

.login_div {
border:20px solid #cc7a2e;
border-width:20px;
border-style:solid;
border-color:#cc7a2e;
}

.center {
    text-align: center; /* Center the content horizontally */
}

.icon-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    margin-top: 10px;
}

