 body.login-page {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: linear-gradient(#1a1a1a, #333);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.login-container {
    background: rgb(0, 0, 0);
    margin: 0 1rem;
    padding: 5rem 2rem;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 7px #333;
    position: relative;
    max-width: 500px;
}

.login-header img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.login-header .tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.login-separator {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    border-bottom: 1px solid #333;
}

.social-login-container {
    margin-top: 1.5rem;
    text-align: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000;
    margin-bottom: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 4px;
}

.social-btn:hover {
    background: #f0f0f0;
}

.social-btn img {
    height: 20px;
    width: 20px;
    margin-right: 0.5rem;
}

.dropdown-btn {
    margin: 3rem 0 10px 0;
    background: none;
    border: none;
    color: gray;
    cursor: pointer;
    font-size: 1em;
    text-decoration: underline;
    padding: 0;
    font-variant-caps: normal;
    text-decoration: none;
    font-size: 12px;
  }
  
.dropdown-btn:hover {
    color: darkgray;
}

.login-form{
    position: absolute;
    padding-bottom: 200px;
    max-width: 83%;
}
@media (min-width: 768px) {
    .login-form {
        min-width: 89%;
    }
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px; /* Add gap between input fields */
}

.input-group input[type=text],
.input-group input[type=password] {
    width: calc(50% - 5px); /* Adjust width to account for the gap */
    padding: 10px;
    border: none;
    background-color: #333;
    color: #ccc;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

button[type="submit"] {
    display: flex;
    justify-content: center; /* Center the text */
    align-items: center; /* Center the text vertically */
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ccc;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.footer {
    font-size: 0.9rem;
    color: #aaa;
    position: relative;
    top: 4rem;
    left: 0;
    right: 0;
    text-align: center;
}

.footer-active {
    font-size: 0.9rem;
    color: #aaa;
    position: relative;
    top: 5rem;
    left: 0;
    right: 0;
    text-align: center;
    padding: 2rem 0;
}