

.login-form .social-auth-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.login-form .social-auth-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.form--container--right {
    flex-grow: 1;
    height: 100%;
    background: #357AE8 url("https://firebasestorage.googleapis.com/v0/b/nit-dgp-9bc0f.appspot.com/o/22380775_6534541.jpg?alt=media&token=1f0ff299-125f-4d5a-8f38-e967b8f868ef") no-repeat center center;
    background-size: cover;
    border-radius: 0 0.4rem 0.4rem 0rem;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    flex-direction: column;
}

@media (max-width: 768px) {
    .form--container--right {
        display: none !important; /* Add !important to ensure it overrides other styles */
    }
}

.right--text{
    position: absolute;
    bottom: 3%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.right--title{
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.right--sub--title{
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.bg_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-bottom: 1rem;
}

.header-title {
    color: #000000;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
}

.header-subtitle{
    color: #605e6b;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

.login-form .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.login-form .form-group input:focus {
    outline: none;
    background: none;
}

.login-button {
    background-image: linear-gradient(to right, #8958f4, #4c9feb, #11dfdc);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-image 0.3s ease;
  }
  
  .login-button:hover {
    background-image: linear-gradient(to left, #8958f4, #4c9feb, #11dfdc);
  }

.login-form .divider--with--text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-form .right--border {
    border-top: 1px solid #d2d3d8;
    display: flex;
    flex-grow: 1;
}

.login-form .divider--text {
    color: #605e6b;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 10px;
}

.login-form .left--border {
    border-top: 1px solid #d2d3d8;
    display: flex;
    flex-grow: 1;
}

.login-button {
    width: 100%;
    padding: 0.65rem 0rem;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.login-form .signup-link {
    margin-top: 20px;
    font-size: 13px;
    color: #333;
}

.login-form .signup-link a {
    color: #38373f;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password-link {
    text-align: right;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px; 
}

.forgot-password-link a {
    color: #2a2a2c; 
    text-decoration: none;
    font-size: 13px;
}

