* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #e8f5f3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    justify-content: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #14b8a6;
}

.logo-icon {
    width: 6px;
    height: 6px;
    background: #14b8a6;
    border-radius: 50%;
    position: relative;
    top: -8px;
}
.header div{
  /*display: flex;*/
  flex-direction: row;
  align-items: center;
  color: #8e8e8e;
}
.header > p{
  font-weight: bold;
  color: #8e8e8e;
  font-size: 18px;
  margin-bottom: 10%;
}

.welcome-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    text-align: left;
}

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

.form-label {
    display: block;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #f9fafb;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #14b8a6;
    background: white;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 16px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #14b8a6;
}

.remember-label {
    font-size: 14px;
    color: #374151;
}

.forgot-password {
    font-size: 14px;
    color: #ef4444;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    background: #14b8a6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 24px;
}

.login-button:hover {
    background: #0d9488;
}

.app-download {
    text-align: center;
}

.app-download-title {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.app-button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s;
}

.app-button:hover {
    transform: translateY(-1px);
}

.app-button.ios {
    background: #007aff;
    color: white;
}

.app-button.android {
    background: #34a853;
    color: white;
}

@media (max-width: 480px) {
    .login-container {
        padding: 32px 24px;
    }
}
 #reset-form {
    display: none;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
}
.back-to-login {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #374151;
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
}