@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --teal-primary: #009688;
  --teal-dark: #00796B;
  --teal-light: #4DB6AC;
  --white: #FFFFFF;
  --yellow-light: #FFF8E1;
  --yellow-border: #FFE082;
  --text-dark: #333333;
  --text-light: #757575;
  --error: #F44336;
  --success: #4CAF50;
  --gray-light: #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #00A19C 0%, #005F5C 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.info-box {
  background-color: var(--yellow-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border: 1px solid var(--yellow-border);
}

.info-icon {
  color: var(--yellow-border);
  flex-shrink: 0;
}

.info-box p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.required {
  color: var(--error);
}

.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus {
  border-color: var(--teal-primary);
}

input::placeholder {
  color: #AAAAAA;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.toggle-password:hover {
  color: var(--text-dark);
}

.btn-save {
  background-color: var(--teal-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-top: 12px;
  transition: background-color 0.2s;
}

.btn-save:hover {
  background-color: var(--teal-dark);
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

@media (max-width: 480px) {
  .card {
    padding: 20px;
  }
  
  h1 {
    font-size: 20px;
  }
}