body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: black;
    color: white;
    font-family: 'Futura LT Pro', sans-serif;
    font-style: normal;
}

/*.background {*/
/*  background-image: linear-gradient(to right, black 40%, rgb(0, 0, 0, 0) 130%), url(../images/ss24-donna-desk.jpg);*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  background-size: center;*/
/*  height: 100vh;*/
/*  width: 100vw;*/
/*  z-index: -1;*/
/*  position: absolute;*/
/*}*/

.login-container {
  text-align: center;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  width: 600px;
}

.login-box {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  width: 60%;
}

input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-family: inherit;
  font-weight: normal;
  font-size: 0.8rem;
  background-color: rgb(240 240 240);
  border-radius: 5px;
  border: none;
}

.login-button {
  background-color: black;
  color: white;
  padding: 15px;
  margin-bottom: 0px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-style: normal;
  font-weight: bold;
  font-size: 0.9rem;
}

.warning {
  color: red;
  margin-top: 10px;
  font-size: 0.8rem;
}

.logo {
    width: 100%;
}

.logo-container {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.imageLogo {
    padding-left: 5px;
    width: 50px;
}

#powered-by {
    padding-top: 20px;
    margin-bottom: -20px;
    font-size: 0.7rem;
    color: #333;
    display: flex;
    align-items:center;
    justify-content: center;
}

#skipq-logo {
    padding-left: 0.4rem;
}

/* Password Reset Link */
.password-reset-link {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    border: none;
    background: none;
}

.password-reset-link button {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.password-reset-link:hover {
    color: #333;
    text-decoration: underline;
}

/* Password Reset Modal Button Styles */
.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cancel-button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.cancel-button:hover {
    background-color: #e8e8e8;
}

.submit-button {
    padding: 10px 20px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: opacity 0.2s ease;
}

.submit-button:hover:not(:disabled) {
    opacity: 0.9;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.reset-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.reset-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.reset-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column-reverse;
        width: auto;
    }
}
