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

body {
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.reset-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 80px;
    height: auto;
    display: block;
}

.main-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.instruction-text {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
    text-align: center;
}

.info-text {
    font-size: 13px;
    color: #00A63D;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.reset-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    background-color: #1f2937;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: background-color 0.2s;
}

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

.form-input:focus {
    background-color: #374151;
}

.form-input.input-error {
    border: 1px solid #ef4444;
    background-color: #1f2937;
}

.error-message {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    text-align: left;
}

.reset-button {
    width: 100%;
    padding: 12px 20px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-bottom: 20px;
}

.reset-button:hover {
    opacity: 0.9;
}

.reset-button:active {
    opacity: 0.8;
}

.return-link {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}

.return-link-text {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.2s;
}

.return-link-text:hover {
    opacity: 0.8;
}
