/* Body Styles */
body {
    margin: 50px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    background-color: #F8F9F9;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner {
    width: 100%;
    background-color: #ff0084;
    color: white;
    text-align: center;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-banner p {
    margin: 0;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    flex-grow: 1;
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 50px;
}

/* Header */


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

.logo img {
    height: 35px;
}

/* Hero Section */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    margin-top: 20px;
}

.form-container {
    width: 50%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container,
.video-wrapper {
    width: 59rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    overflow: hidden;
}
.video-wrapper {
    height: 30rem;
}
.iframe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    max-width: 600px;
    width: 100%;
    margin: 0;
}

/* Login Heading */
.login-heading {
    font-weight: 400;
    color: #343C6A;
    text-align: left;
    margin-bottom: 20px;
    font-size: 24px;
}

.highlight {
    color: #E80C89;
    font-weight: 800;
}

/* Form Labels */
.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    color: #343C6A;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Password Container */
.password-container {
    position: relative;
}
.password-container input {
    width: 100%; 
    padding-right: 40px;
}
.password-icon {
    position: absolute;
    right: 15px;
    top: 27%;
    color: #ff0084;
    cursor: pointer;
    font-size: 14px;
}

/* Custom Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.checkbox-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: #ff0084;
    border-color: #ff0084;
}


.checkbox-container input[type="checkbox"]:checked::after {
    content: '\2713';
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.checkbox-container label {
    font-weight: 600;
    font-size: 14px;
    color: #343C6A;
}


/* Forgot Password Link */
.forgot-password {
    display: block;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
    color: #E80C89;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Login Button */
.login-button, .send-button{
    background-color: #E80C89;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #d00978;
}

.send-button:hover {
    background-color: #d00978;
}

/*Forgot Password Label*/

.forgot-password-label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #343C6A;
}

/* Continue With Section */
.continue-with {
    text-align: center;
    margin: 20px 0;
    color: #343C6A;
    font-size: 14px;
    font-weight: 600;
}

.divider {
    border-top: 1px solid #E0E0E0;
    margin: 10px 0 20px;
    width: 100%;
}

/* Social Login Buttons */
.social-login-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.social-button {
    background-color: white;
    color: #343C6A;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    width: 48%;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-button:hover {
    border-color: #d00978;
}

.social-icon {
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* text below social icons */

.text-below-icons {
    text-align: center;
    color: #343C6A;
    font-size: 14px; 
    font-weight: 600;
}

.text-below-icons-link {
    color: #E80C89;
    font-weight: 800;
    text-decoration: none;
}

.text-below-icons-link:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #343C6A;
    margin-top: 30px;
    margin-bottom: 0px;
}

.footer .contact-support {
    color: #FF0084;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer .contact-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer .contact-info span {
    margin-bottom: 5px;
}

.footer .contact-info span .label {
    font-weight: 700;
}

.footer .social-links {
    display: flex;
    align-items: right;
}

.footer p {
    font-weight: 700;
    margin: 0;
}

.footer .social-links a {
    margin-left: 10px;
    color: #343C6A;
    text-decoration: none;
    font-weight: 500;
}

.footer .social-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1366px) {

    body {
        margin: 20px;
    }

    .video-wrapper {
        display: none;
    }

    .form-container {
        width: 100%;
        padding: 20px;
    }

    .announcement-banner {
        display: none;
    }

    .content {
        max-width: 100%;
        padding: 0;
    }
}


/* Custom Alert Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border-radius: 8px;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    text-align: center;
}

.modal-header {
    font-weight: 700;
    font-size: 1.5rem;
    color: #343C6A;
    margin-bottom: 15px;
}

.modal-body {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.modal-footer {
    text-align: center;
}

.modal-button {
    background-color: #E80C89;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.modal-button:hover {
    background-color: #d00978;
}

.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #ddd;
    border-top-color: skyblue;
    animation: loading 1s linear infinite;
  }
  @keyframes loading {
    to {
      transform: rotate(360deg);
    }
  }


/* Bootstrap Alert Styles */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  
  .alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
  }
  
  .alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
  }
  
  .alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
  }
  
  .alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
  }
  
  .alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
  }
  
  .alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
  }
  
  .alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
  }
  
  .alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
  }
  
  .alert-heading {
    color: inherit;
  }
  
  .alert-link {
    font-weight: bold;
    color: inherit;
    text-decoration: underline;
  }

.qr_image{
    text-align: center;
}
.qr_image img{
    width: 50%;
}

.text-below-reset2fa {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
