/* Ensure Full-Screen Centering */
body, html {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0088D1; /* Change this to your preferred color */
}


/* Login Container */
.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

/* Login Card */
.login-card {
    width: 400px;
    max-width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.9); /* White with 90% opacity */
    text-align: center;
    margin: 0 auto;
}

/* Login Title */
.login-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #005696;
    gap: 5px;
    margin-bottom: 20px;
}

.login-title img {
    width: 40px;
    height: 40px;
    margin: 0 -6px;
}

/* Point of Sale Card */
.pos-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px; /* Adjusted to match image size */
    height: 45px; /* Fixed height */
    background-color: #6ec6ff; /* Light blue */
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px; /* Fully rounded edges */
    text-align: center;
    margin: 10px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
.form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    width: 100%;
    height: 50px;
}

/* Remember Me & Forgot Password */
.d-flex {
    font-size: 14px;
}

/* Login Button */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 500px) {
    .login-card {
        width: 90%;
        padding: 20px;
    }
    .login-title {
        font-size: 28px;
    }
    .login-title img {
        width: 35px;
        height: 35px;
    }
    .pos-card {
        max-width: 260px;
        height: 40px;
        font-size: 14px;
    }
}

.input-box {
    position: relative;
    margin-bottom: 15px;
}

.input-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-box input {
    width: 100%;
    padding: 10px;
    padding-left: 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
