* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.auth-container {
    text-align: center;
}

.logo {
    width: 100px; /* Explicitly set the width */
    max-width: 100%; /* Prevent overflow */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center alignment fix */
    margin: 0 auto 20px; /* Center horizontally and add bottom margin */
}


.auth-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-block input[type="text"],
.auth-block input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    color: #333;
}

.auth-block input::placeholder {
    color: #aaa;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
}

.sign-in-button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.sign-in-button:hover {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
}

.forgot-password {
    margin-top: 15px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}
