body {
    font-family: Arial, sans-serif;
   
    height: 100%;
    
    color: #fff;
    background-color: #101820;
}

a{
    color: #00e0ff !important;
    text-decoration: underline !important;
}

h1, h2 {
    color: #fff !important;
}
p {
    color: #fff !important;
}
.center {
    
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50%;
    margin-bottom: auto;
    width: 50%;
   
  }

.pad {
   display: inline-block;
   align-items: center;
    max-width: 500px;
    font-size: 12px;
    padding: 50px;
    padding-top: 5%;
    height: 100vh;
    text-align: left !important;
}
.padlogin {
    
   align-items: center;
    padding: 30px;
    font-size: 13px;
    max-width: 500px;
    text-align: left !important;
    
}

.form-section{
    background-color: #101820 !important;
    
}

.form-section h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1em;
}

.form-group input[type="checkbox"] {
    width: auto;
}

.form-group .remember-label {
    display: inline-block;
    margin-left: 10px;
}

.form-group .forgot-password {
    float: right;
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
}

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

.form-group .button {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: #28a745;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

.form-group .button:hover {
    background-color: #218838;
}

.form-group .google-signin {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group .google-signin img {
    width: 20px;
    margin-right: 10px;
}

.sign-up-link {
    text-align: center;
    margin-top: 20px;
}

.sign-up-link a {
    color: #000000;
    text-decoration: none;
}

.sign-up-link a:hover {
    text-decoration: underline;
}
/* Default logo */
  .logo img {
    content: url('../data/img/NUMblack.png');
    height: 50px;
    width: 100px;
  }
  
    /* Default styling for small and medium screens */
    .signup-link {
        color: inherit; /* Default link color */
    }
  
/* Media query for xs, sm, and md screens */
  @media (max-width: 991px) {
    .form-section {
      background-image: url('../data/img/login-bg.jpg'); /* Add the background image */
      color: #fff !important;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      
    }
    .logo img {
      content: url('../data/img/NUMwhite.png');
    }
  }
 @media (min-width: 768px) and (max-width: 991px) {
    .form-section {
      padding-top: 15%;
    }
  }
 @media (min-width: 992px) {
        .signup-link {
            color: black !important; /* Change link color to black on lg screens */
        }
    }