* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

li {
    list-style: none;
}

/* Sign in page */
body.sign-in {
    background: url('../imgs/bg.jpg')no-repeat center center/cover;
    background-attachment: fixed;
}

.bg-wrap {
    width: 100%;
    position: relative;
}

.form-wrap {
    width: 100%;
}

.form-box {
    width: 35%;
    background: rgba(4, 3, 14, 0.466);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.7px);
    -webkit-backdrop-filter: blur(2.7px);
    border: 1px solid rgba(16, 14, 61, 0.57);
    border-radius: 10px;
    margin: 40px auto;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    padding: 40px;
    color: #fff;
}

.form-box .logo img {
    width: 200px;
}

.form-wrap .form-group input,
.form-wrap .form-group select.reg-dd {
    height: 50px;
    border: none;
}

.form-wrap .form-group select.reg-dd-2 {
    border: none;
}

.form-wrap .form-group input.form-control {
    color: #fff;
}

.form-wrap .form-group button {
    width: 100%;
    height: 50px;
}

.form-wrap .form-group input::placeholder {
    color: #9c9c9c;
}



/* Modal Custom Styles */
.modal-content {
    background-color: #f8f9fa;
    border-radius: 10px;
}

.modal-header {
    background-color: #007bff;
    color: #fff;
    border-bottom: 2px solid #ddd;
}

.modal-header .btn-close {
    background-color: transparent;
    border: none;
}

.modal-body {
    font-size: 16px;
}

.modal-body .user-details p {
    margin: 10px 0;
}

.modal-footer {
    background-color: #f1f1f1;
    border-top: 2px solid #ddd;
}

.user-details strong {
    color: #007bff;
}
