:root {
  --color-bg-dark: #131313;
  --color-bg-darker: #020807;
  --color-bg-white: #FFFFFF;
  --color-primary: #7F56D9;
  --color-border: #D0D5DD;
  --color-text-dark: #344054;
  --color-text-medium: #475467;
  --color-text-light: #667085;
  --color-title: #101828;
  --color-link: #6941C6;
  --color-bg-light: #EAECF0;
  --color-bg-grey: #F4F4F4;
  --color-success: #34A853;
  --color-google-blue: #4285F4;
  --color-google-red: #EA4335;
  --color-google-yellow: #FBBC04;
  --color-google-green: #00A3FF;
  --color-bg-purple-light: #ECDFFF;
  --color-bg-purple-gradient: linear-gradient(26.57deg, #53389E 8.33%, #6941C6 91.67%);
  --color-bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #D0D5DD 100%);
  --color-bg-fade: #FFFFFF33;
  --color-bg-very-light: #FAFAFA;
  --color-bg-green-light: #D5F3F0;
  --color-bg-orange: #EFCB96;
  --color-bg-purple: #6941C6;
  --color-bg-verify: #F9F5FF;
  --color-bg-dark-green: #092724;
  --color-text-grey: #94A3B8;
  --color-black: #000000;
  --color-error: #DC2626;
  --color-error-bg: #FEF2F2;
  --color-success-bg: #F0FDF4;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--color-bg-white);
  color: var(--color-title);
}

.reset-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-bg-very-light);
  padding: 0 16px;
}

.reset-logo {
  margin-top: 48px;
  margin-bottom: 24px;
}

.reset-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-bg-purple-light);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.reset-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-title);
  margin: 0 0 8px 0;
  text-align: center;
}

.reset-subtitle {
  color: var(--color-text-light);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 24px;
}

.reset-form {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reset-label {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  margin-top: 12px;
}

.reset-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-bg-white);
  color: var(--color-title);
  margin-bottom: 0;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}

.reset-input:focus {
  border-color: var(--color-primary);
}

.password-input-container {
  position: relative;
  width: 100%;
}

.password-input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.password-toggle:hover {
  color: var(--color-primary);
}

.password-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-primary {
  width: 100%;
  padding: 14px 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  margin: 16px 0 12px 0;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--color-link);
}

.reset-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 1rem;
}

.reset-login {
  color: var(--color-link);
  text-decoration: none;
  margin-left: 4px;
}

.reset-login:hover {
  text-decoration: underline;
}

/* Alert styles */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.alert-error {
  background: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid #FECACA;
}

.alert-success {
  background: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid #BBF7D0;
}

@media (max-width: 480px) {
  .reset-container {
    padding: 0 4px;
  }
  
  .reset-form {
    max-width: 100vw;
  }
} 