body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    width: 90px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    margin-bottom: 20px;
    color: #f7a730ea;
    font-size: 12px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-bottom: 5px;
    color: #333;
}

input {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #f7a730ea;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: darkgreen;
}

.link {
    margin-top: 10px;
}

.link a {
    color: #3498db;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}