body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #fff;
}

.signin-container {
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: 100px;
    margin: 10px auto 10px;
}

form input {
    width: calc(100% - 24px);
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.password-wrapper {
    position: relative;
}

.toggle-wrapper {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#togglePassword {
    font-size: 16px;
    color: #666;
    width: 24px;
    height: 16px;
    display: block;
    text-align: center;
}

.btn-signin {
    background-color: #800000;
    color: white;
    width: 100%;
    padding: 14px 0px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    margin-top: 15px;
    cursor: pointer;
}

.btn-create {
    display: block;
    margin: 15px auto;
    padding: 12px 0px;
    width: 100%;
    text-decoration: none;
    border: 1px solid #800000;
    color: #800000;
    border-radius: 10px;
    font-weight: bold;
}

.forgot-link {
    display: block;
    margin: 8px 0;
    color: #800000;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.terms {
    font-size: 11px;
    margin-top: 20px;
}

.error-msg {
    background-color: #ffe5e5;
    color: #b30000;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

#togglePassword {
    width: 20px;
    height: 15px;
    display: inline-block;
    cursor: pointer;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid #888;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
