
/*abcd*/
/* Ensure html and body take up the full height of the viewport */
html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #181525;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

footer {
    left: 0;
    right: 0;
    z-index: 1000;
    color: #fff;
    padding: 10px 0;
}

    /* Default link color */
    footer a {
        color: #B0B8C5; /* Light gray color */
        text-decoration: none; /* Remove underline */
        font-size:12px;
    }

        /* Hover effect */
        footer a:hover {
            color: #4A90E2; /* Blue color on hover */
        }

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle {
    background-color: transparent;
    border: none;
}

.login-section {
    padding-top: 50px; /* Adjust padding as needed */
    padding-bottom: 50px; /* Adjust padding as needed */
    display: flex; /* Use flexbox within the login-section */
    flex-grow: 1; /* Allow this section to grow and fill remaining space */
}

    /* Ensure the inner container within login-section also takes up available space */
    .login-section .row {
        display: flex;
        justify-content: center; /* Center the content horizontally */
        align-items: center; /* Center the content vertically */
        flex-grow: 1;
    }

.agile-logo {
    padding-left: 10rem;
    padding-right: 10rem;
}

.password-icon {
    cursor: pointer; /* Show pointer cursor on hover */
}

.logo {
    color: #B0B8C5;
    font-weight: 400;
    font-size:12px;
}

    .logo a {
        color: #4A90E2;
        font-weight: 700;
    }

@media (max-width: 768px) { /* Adjust the max-width based on your definition of mobile */
    .a-logo {
        height: 30px;
    }
}


.form-check-input:checked {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.dropdown-item:active {
    background-color: #4A90E2;
}

.dropdown-item:hover {
    background-color: #4A90E2;
    color: #FFFFFF;
}

.logo a:hover {
    color: #356FB2;
}

.login-form {
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

#login-btn {
    background-color: #4A90E2;
    color: #ffffff;
}

    #login-btn:hover {
        background-color: #356FB2;
    }
#signUp-btn {
    background-color: #4A90E2;
    color: #ffffff;
}

    #signUp-btn:hover {
        background-color: #356FB2;
    }
.btn {
    background-color: #24222E;
}

    .btn:hover {
        background-color: #142A43;
    }

    .btn:active {
        background-color: #24222E;
    }

    .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
        background-color: #142A43;
    }

input[type="text"], input[type="password"] {
    border-radius: 10px;
}

button {
    background-color: #4A90E2;
    color: white;
    font-weight: 600;
    border-radius: 10px;
}

    button:focus {
        outline: none;
    }

input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

    input[type="checkbox"]:checked + label {
        font-weight: 600;
    }

input-group-text {
    background-color: transparent;
    border: none;
}

@media (max-width: 768px) {
    .login-form {
        padding: 20px;
    }
}
.dropdown-item.active {
    font-weight: bold;
    color: #007bff; /* Example color */
    background-color: #f8f9fa; /* Optional background highlight */
}

.uat {
    background-color: #FF6B6B;
    color: #ffffff;
    border-radius: 10px;
    height: 20px;
    padding: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: absolute;
    margin-left: -30px;
    margin-top: 30px;
}
.top-bar {
    background-color: #181525 !important;
}

/* Added by AJ Loren */
.edge {
    color: #B0B8C5;
    font-size: 12px;
    font-weight: 400;
    background-color: #202631;
    border-radius: 12px;
    padding: 18px;
}

    .edge a {
        text-decoration: none;
        color: #ffffff;
    }

.edge-hutch {
    color: #B0B8C5;
    font-weight: 600 !important;
}

.agile-image {
    width: 50%;
    text-align: center;
}

.coming {
    color: #EE0000;
}