@font-face {
    font-family: "Cabin";
    src: url("../../../fonts/Cabin-Bold.otf");
    font-display: block;
    font-weight: 800;
  }
  @font-face {
    font-family: "Cabin Medium";
    src: url("../../../fonts/Cabin-Medium.otf");
    font-display: block;
    font-weight: 500;
  }
  @font-face {
    font-family: "Cabin";
    src: url("../../../fonts/Cabin-Regular.otf");
    font-display: block;
    font-weight: 400;
  }
  @font-face {
    font-family: "Cabin SemiBold";
    src: url("../../../fonts/Cabin-SemiBold.otf");
    font-display: block;
    font-weight: 600;
  }

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Cabin";
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.image-column {
    width: 60%;
    background: url(dashboardimg.png) no-repeat center 65%;
    margin-bottom: 50px;
    background-size: 90%;
    margin-top: 15px;
}

.header {
    text-align: center;
    margin-bottom: 20px; /* Space between the header and the form */
}

.headerlogo {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px; /* Space between the header and the form */
}

.logo {
    width: 250px;  /* Adjust size as needed */
    height: auto;
}

.header-content {
    display: flex;
    justify-content: end;
    align-items: center;
    border-bottom: 1px solid #eee; /* Adjust color as necessary */
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.go-to-website {
    color: #333; /* Adjust if a different color is needed */
    text-decoration: none;
    font-size: 16px; /* Adjust size as needed */
    background-color: transparent;
}

h1 {
    font-size: 24px;
    color: #333;
    font-weight: normal;
}

.form-columns {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.form-containers {
    width: 80%;
    max-width: 400px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.input-container i.fa-lock, .input-container i.password-toggle {
    position: absolute;
    z-index: 5;
    color: #ccc;
    cursor: pointer;
}

.input-container i.fa-lock {
    left: 10px;
}

.input-container i.password-toggle {
    right: 10px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px 40px 10px 40px; /* Adjust padding to prevent text overlap with icons */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #ccc;
}

label {
    display: block;
    margin-bottom: 5px;
}

.forgot-password {
    position: absolute;
    right: 10px; /* Align to the right, over the eye icon */
    top: -20px; /* Position above the eye icon */
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
}

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

.fas {
    position: absolute;
    top: 15px;
    color: #ccc;
}

i.fas.fa-user {
    left: 10px;
}

.notification-banner {
    background-color: #fff; /* Dark blue background */
    color: #333;
    padding: 10px 20px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 20px; /* Space before the form starts */
}
a.applynowtext {
    text-decoration: none;
}

.blinking-text {
    color: red;
    animation: blinkingText 1.5s infinite;
}

@keyframes blinkingText {
    0% { color: red; }
    50% { color: transparent; }
    100% { color: red; }
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.actions {
    text-align: center;
}

.registration-text {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.register-link {
    color: #6C63FF;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}
.header-contents{
    position: absolute;
    top: 2.5rem;
    left: 5rem;
}
.btn-primary {
    background-color: #1ab394;
    border-color: #1ab394;
    color: #ffffff;
  }
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary.active,
  .open .dropdown-toggle.btn-primary, 
  .btn-primary:not(:disabled):not(.disabled).active, 
  .btn-primary:not(:disabled):not(.disabled):active, 
  .show>.btn-primary.dropdown-toggle {
    background-color: #e81313;
    border-color: #e81313;
    color: #ffffff;
    box-shadow: none !important;
}
a,
a:hover{
  color: #1ab394;
}
