body {
    background-color: #EBEDFB; /* #0a192f Dark blue background change to light gray #B3B3B3*/
    color: #00aaff; /* Light blue text */
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content-wrapper {
    background-color: #112240; /* Darker blue for card */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.5); /* Soft glow */
    width: 400px;
    position: relative;
    transition: 0.3s;
}

    .content-wrapper:hover {
        box-shadow: 0px 0px 15px rgba(0, 170, 255, 0.9); /* Stronger glow on hover */
    }

h1 {
    font-size: 32px;
    font-weight: bold;
    color: #00aaff;
    text-align: center;
/*    text-shadow: 0px 0px 8px rgba(0, 170, 255, 0.8);*/
}

p {
    font-size: 16px;
    color: #00aaff;
    text-align: center;
}

.form-group {
    text-align: left; /* Align form elements to the left */
    margin-bottom: 15px;
}

    .form-group label {
        font-size: 14px;
        font-weight: bold;
        color: #00aaff;
        display: block;
    }

.form-control {
    background-color: #0a192f;
    color: #00aaff;
    border: 1px solid #00aaff;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
}

    .form-control:focus {
        outline: none;
        border-color: #00ccff;
        box-shadow: 0 0 10px rgba(0, 204, 255, 0.8);
    }

/* Updated Login Button */
.btn-primary {
    background-color: #00aaff;
    color: #112240; /* Same as content-wrapper background */
    border: none;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
    padding: 10px;
    border-radius: 6px;
/*    box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.5);*/
}

    .btn-primary:hover {
        background-color: #0088cc;
        box-shadow: 0px 0px 15px rgba(0, 170, 255, 0.8);
        color: #0a192f; /* Slightly darker blue on hover */
    }
