body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace this with your image URL via the DirectAdmin File Manager */
    background: url('safari-bg.jpg') no-repeat center center/cover; 
    z-index: -1;
}

.login-card {
    /* The magic "glass" effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px); 
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff; /* White text for contrast */
}

.card-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px; /* Added padding for icon */
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    color: inherit;
    box-sizing: border-box;
    outline: none;
}

.input-group .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.7);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-options a, .register-link a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.login-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #fff; /* White button */
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
}

.register-link {
    text-align: center;
    font-size: 14px;
}