/* public/styles.css */
body {
    font-family: Arial, sans-serif;
    background-image: url('images/BG.jpg'); /* Set background image */
    background-size: cover;  /* Ensure the image covers the entire page */
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.welcome-container {
    text-align: center;
}

.login-container {
    background-color: rgb(9 9 9 / 0%);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 300px;
}

h2 {
    text-align: center;
    color: #BBBBBB;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #1010124a;
    height: 40px;
    color: #9b9090;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 18px;
    cursor: pointer;
}

.btn{
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
}

button {
    width: 40%;
    padding: 10px;
    background-color:#101012a0;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #4d814f5e;
}

.links {
    text-align: center;
    margin-top: 10px;
}

.links a {
    text-decoration: none;
    color: #007bff;
}

.links a:hover {
    text-decoration: underline;
}
