.body {
    background-color: #020b1f;
    background-image: url('/images/loginImages/image\ 1.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.login-container {
    background-color: rgba(217, 217, 217, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-container-appearance {
    background-color: rgba(217, 217, 217, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    margin: auto; /* Center the element horizontally */
}


.form-control {
    background: transparent !important;
    color: white !important;
    border-radius: 50px !important;
}

.form-control:focus {
    background-color: #1c2c4e;
    border-color: #5bc0de;
    color: white;
    box-shadow: none;
}

.custom-primary {
    color: #5bc0de;
}

.btn-login {
    background-color: #5bc0de;
    border: none;
    border-radius: 50px;
}

.btn-login:hover {
    background-color: #46b8da;
}

.btn-outline-secondary {
    border-color: #5bc0de;
    color: #5bc0de;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.language-dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
}

.divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.divider-text span {
    padding: 0 10px;
    /* background-color: rgba(10, 26, 58, 0.8);*/
    position: relative;
    z-index: 1;
}

.btn1 {
    height: 40px;
    width: 125px;
    border: none;
    border-radius: 10px;
    color: #07007e;
    font-weight: 500;
}

.divider-text:after {
    content: "";
    /*position: absolute;*/
    width: 100%;
    border-bottom: 1px solid #ddd;
    top: 50%;
    left: 0;
    z-index: 0;
}

.modal-content {
    background-color: rgba(217, 217, 217, 0.5);
    color: white;
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

.close {
    color: white;
}

.email-input-group {
    display: flex;
    align-items: center;
    /* background-color: #1c2c4e;*/
    background: transparent;
    border: 1px solid white;
    border-radius: 50px;
    overflow: hidden;
}

.email-input-group .input-group-text {
    background-color: transparent;
    border: none;
    color: white;
}

.email-input-group .form-control {
    border: none;
    border-radius: 0;
}

.form-control::placeholder {
    color: rgb(210, 208, 208);
    opacity: 1;
}

.position-relative {
    position: relative;
}

.password-toggle {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.modal .modal-content .modal-header .modal-title {
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    color: #fff !important;
}

.btn-secondary {
    border-radius: 10px !important;
    background-color: transparent !important;
    border: 1px solid #e2e5ec !important;
    color: #ffffff !important;
}

/* Improved Modal Close Button Styling */
.btn-close {
    position: relative;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn-close:before,
.btn-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: white;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.btn-close:hover:before,
.btn-close:hover:after {
    background-color: #ff4444; 
}

.btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.organisation-reset {
    display: none;
}

@media only screen and (max-width: 780px) {
    .organisation-reset {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
        font: normal normal 400 1.5rem/2.25rem Poppins;
        color: white;
        text-decoration: underline;
        cursor: pointer;
    }
}