.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 90vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
}

.login-container h1,
.register-container h1
{
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.input-wrapper {
    position: relative;
}

.input-wrapper .form-input {
    padding-right: 35px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.button_text {
    width: 100%;
    padding: 0.75rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.button_text:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 1rem;
    color: #e74c3c;
}

.link-text {
    color: #007BFF;
    text-decoration: none;
}

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

.centerhelp_modal {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    width:  80%;
}

@media screen and (max-width: 600px) {
  .modal-content
  { 
    width: 90vw;
    background-color: #fff;
  };
}

@media screen and (min-width: 601px) and (max-width: 775px) {
  .modal-content
  {
    width: 80vw; 
    background-color: #fff;
  }
}

@media screen and (min-width: 776px) and (max-width: 950px) {
  .modal-content
  {
    width: 50vw;
    background-color: #fff;
  };
}

@media screen and (min-width: 951px) {
  .modal-content
  {
    width: 25vw;
    background-color: #fff;
  };
}
